Tuoyuan Network https://www.toyean.com/ Professional zblog theme template original website Use jQuery to write a ChatGPT typing effect https://www.toyean.com/post/448.html <p>In recent years, with the continuous development of technology, artificial intelligence (AI) has gradually become a hot topic. Among them, as a large language model, ChatGPT has become increasingly popular in China. Its natural language processing function allows users to communicate more naturally, and it can also be used as a core algorithm in various AI products and services< Br/></p><p, AI capability will also be further improved</ p> <p>Although some people worry that AI will have a negative impact on human work, in the process of practical application, we can see that AI has gradually become an important support and technology engine in various fields. Other enterprises have also successively released new AI products, such as Stable Diffusion, which focuses on painting, and generates near real voice Bark (SonoAI) through text input</ p> <p>AI itself exists as a language model and can be used in conjunction with various AI products and services, such as Sun Yanzi's voice singing "Need someone to accompany", Jay Chou's voice singing "Dark Plum Jam", and even can simulate the same voice as his own, and do live video to make himself become a secondary character</ p> <p>When using ChatGPT, I saw the results presented in the form of a typewriter, so I used a small amount of jQuery to write a ChatGPT typing effect</ p> <p>The specific code is as follows:</p><p>HTML:</p><pre class="Prism height Prism language markup">&lt; div&nbsp;class=&quot;textbox&quot;&gt;&lt;span&nbsp;id=&quot;content&quot;&gt;&lt;/span&gt;&lt;span&nbsp;id=&quot;cursor&quot;&gt;&lt;/span&gt;&lt;/div&gt;</pre><p>CSS:</p><pre class="prism-highlight prism-language-css">.textbox&nbsp;{&nbsp; width:750px;&nbsp;margin:100px&nbsp;auto;&nbsp;padding:20px&nbsp;30px;&nbsp;font-size:16px;&nbsp;color:#333;&nbsp;white-space:pre-wrap;&nbsp;line-height:30px;&nbsp;border:2px&nbsp;solid&nbsp;#e8e8e8;&nbsp;box-sizing:border-box;&nbsp;background:#f8f8f8;&nbsp;} #cursor&nbsp; {&nbsp; width:0.2em;&nbsp;height:17px;&nbsp;margin:7px&nbsp;0&nbsp;0&nbsp;0.1em;&nbsp;background-color:#000;&nbsp;display:inline-block;&nbsp;vertical-align:top;&nbsp;animation:blink&nbsp;0.8s&nbsp;infinite;&nbsp;} @keyframes&nbsp; blink&nbsp; { &nbsp;& nbsp;&nbsp;&nbsp;from,&nbsp;to&nbsp; {&nbsp; opacity:1;&nbsp;} &nbsp;& nbsp;&nbsp;&nbsp;50%&nbsp; {&nbsp; opacity:0;&nbsp;} }</pre><p>jQuery (introducing jQuery library):</p><pre class="prim height primm language javascript">$(function()&nbsp; { &nbsp;& nbsp;&nbsp;&nbsp;var&nbsp;text&nbsp;=&nbsp;&quot; On the night of October 12, the sixth year of Yuanfeng, when he was undressed and sleepy, he entered the house in the moonlight and set off happily. Thinking of those who are not happy, they went to Chengtian Temple to find Zhang Huaimin. Huaimin also did not sleep, and walked with each other in the atrium. Under the court, the water is as clear as water. The algae in the water do not cross, and the bamboo and cypress are covered. What night without moon? Where is there no bamboo and cypress? But few idle people are like the two of us. \N -- Song Dynasty& nbsp; Su Shi's Night Tour of Chengtian Temple&quot& nbsp;//&nbsp; Text to be printed &nbsp;& nbsp;&nbsp;&nbsp;var&nbsp;delay&nbsp;=&nbsp;50;&nbsp;//&nbsp; Typing speed, in milliseconds &nbsp;& nbsp;&nbsp;&nbsp;printText(text,&nbsp; delay); }); function&nbsp;printText(text,&nbsp; delay){ &nbsp;& nbsp;&nbsp;&nbsp;var&nbsp;chars&nbsp;=&nbsp;text.split(&quot;& quot;); &nbsp;& nbsp;&nbsp;&nbsp;var&nbsp;i&nbsp;=&nbsp;0; &nbsp;& nbsp;&nbsp;&nbsp;var&nbsp;intervalId&nbsp;=&nbsp;setInterval(function(){ &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(i&nbsp;& lt;&nbsp;chars.length){ &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;newText&nbsp;=&nbsp;$(&#39;# content&#39;).text()&nbsp;+& nbsp;chars[i]; &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$(&#39;# content&#39;).text(newText); &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;i++; &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else{ &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;clearInterval(intervalId); &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$(&#39;# cursor&#39;).remove();& Nbsp;&nbsp;&nbsp;&nbsp;//The cursor at the end of the text is removed at the end of the content display. If the cursor is left, delete or use//to comment on this line &nbsp;& nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;& nbsp;&nbsp;&nbsp;},&nbsp;delay); }</pre><p>The effect is as follows:</p><p style="text align: center;"><img class="ue image" src=“ https://www.toyean.com/zb_users/upload/2023/05/202305211684640168323697.gif "Alt=" chatgpt typing effect "/></p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/448.html "Target=" _blank ">Continue to read the full text of Writing a ChatGPT Typing Effect with jQuery...</a></p><p>Classification: web front end | Tags: |<a href=" https://www.toyean.com/post/448.html#comment "Target=" _blank ">Add comments</a>(0)</p><p><a href=" https://www.toyean.com/post/448.html#comment "Target=" _blank ">There are no comments yet. What would you say?</a></p><h3>Related articles:</h3><ul><li><a href=" https://www.toyean.com/post/137.html ">CSS enables color change between rows of tables</a>(2011-04-01)</li><li><a href=" https://www.toyean.com/post/234.html ">Solution to position: fixed failure in IE6</a>(2011-11-16)</li><li><a href=" https://www.toyean.com/post/222.html ">Description of Android Simulator Creation Parameters</a>(2011-10-06)</li><li><a href=" https://www.toyean.com/post/112.html ">Method of unifying font size between browsers</a>(2011-03-18)</li><li><a href=" https://www.toyean.com/post/12.html ">Database application in ASP</a>(2010-10-14)</li></ul><a target=" _blank "title=" Alibaba Cloud offers "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Thu, 18 May 2023 12:50:31 +0800 How to convert Youku kux files to mp4 https://www.toyean.com/post/kuxtomp4.html <p>Recently, due to the need to download a video on the Youku platform, Youku prompted that you need to download the PC client, so after downloading the Youku PC client and installing it, it was found that the downloaded video extension is. kux, and this format can only be played on the Youku client. In order to send it to WeChat or other players for playing, The kux video needs to be converted to the mainstream general mp4 video format</ p><p style="text-align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2023/01/202301301675087089739385.jpg "Title=" Method of converting kux to mp4. jpg "alt=" Method of converting kux to mp4. jpg "/></p><h3>How to convert Youku kux files to mp4</h3><p>1. First find the root directory of Youku installation path (X is the drive letter where you installed Youku): X: Program Files (x86) \YouKu YoukuClient </p><p>2. Find and open the nplayer folder in the root directory of Youku, create a text document named mp4, and change the extension of. txt to. bat. If the file does not display the extension, you can click the method to display the extension</ p><p>3、 Right click to edit the mp4.bat file, enter the following code and save it (note: change the drive letter X where Youku is located in the code to the actual drive letter):</p><pre class="Prism height Prism language bash">@ echo&nbsp; off setlocal&nbsp;enabledelayedexpansion set&nbsp;ffmpeg=&quot;X:\Program&nbsp;Files&nbsp; (x86)\YouKu\YoukuClient\nplayer\ffmpeg.exe&quot; if&nbsp;exist&nbsp;%ffmpeg%&nbsp; ( for&nbsp;/r&nbsp;.&nbsp;%%i&nbsp;in&nbsp; (*.kux)&nbsp; do&nbsp; ( %ffmpeg%&nbsp;- y&nbsp;-i&nbsp;&quot;%%i&quot;&nbsp;-c:a&nbsp;copy&nbsp;-c:v&nbsp;copy&nbsp;-threads&nbsp;2&nbsp;&quot;%%~dpni.mp4&quot; ) )&nbsp; else&nbsp;echo pause</pre><p>4、 Copy or cut the video in kux format downloaded from Youku client to the nplayer folder, that is, the folder where mp4.bat is located</ p><p>5、 Double click the mp4.bat file. When the last line of the pop-up window displays "Please press any key to continue...", the window can be closed. At this time, you will see that an mp4 file with the same name as the kux video has been generated in the nplayer folder< br/></p><p> ©Copyright Birdol. Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/kuxtomp4.html "Target=" _blank ">Continue to read the full text of How to Convert Youku Kux Files to MP4...</a></p><p>Classification: Essays | Tags:<a href=" https://www.toyean.com/tags-54.html ">Computer</a>, |<a href=" https://www.toyean.com/post/kuxtomp4.html#comment "Target=" _blank ">Add comments</a>(1)</p><hr/><h3>Latest comments:</h3><ul><li><a href=" https://www.toyean.com/post/kuxtomp4.html#comment -2749">2023-04-05 22:47:09 PM</a>, Abc123456: Hello, the actual measurement seems to be invalid</li></ul><h3>Related articles:</h3><ul><li><a href=“ https://www.toyean.com/post/249.html ">No network provider accepts the specified network path</a>(2011-12-22)</li><li><a href=" https://www.toyean.com/post/73.html ">Common Computer Problems and Solutions</a>(2011-02-18)</li><li><a href=" https://www.toyean.com/post/259.html ">Win7 display camera method</a>(2012-02-08)</li><li><a href=" https://www.toyean.com/post/excel-insert-flash.html ">How to Insert Flash Animation into Excel</a>(2012-05-02)</li><li><a href=" https://www.toyean.com/post/131.html ">Solution for LAN unable to access local IIS website</a>(2011-03-26)</li></ul><a target=" _blank "title=" Alibaba Cloud discount "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Mon, 30 Jan 2023 21:59:59 +0800 Visitor counter plug-in https://www.toyean.com/post/visitor.html <p>A statistical plug-in recording the number of visitors, which displays the number of visitors and the number of articles published today at the end of the front page, and has independent switch control</ p> The<p>plug-in automatically creates a counter file in the zb_users/cache/plugin/visitor/directory to save the number of visitors. If the creation fails, please give the zb_users/cache directory 0777 permission manually</ p> <p>Demo effect:</p><table><tbody><tr class="firstRow"><td><span style="text align: center;">You are the 10086th visitor to our website. Today, there are 3 new articles</span></td></tr></tbody></table><p>Plug in Settings page:</p><p style="text align: center;"><img class="ue image" src=“ https://www.toyean.com/zb_users/upload/2022/02/202202111644551522910817.png "Alt=" Visitor counter plug-in "/></p><p><strong>Release V1.0 on 2022-02-11</strong></p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/visitor.html "Target=" _blank ">Continue to read the full text of Visitor Counter Plug ins...</a></p><p>Classification: Free Plug ins | Tags:<a href=" https://www.toyean.com/tags-63.html ">Tuoyuan</a>,<a href=" https://www.toyean.com/tags-122.html ">zblog</a>,<a href=" https://www.toyean.com/tags-130.html ">Plug ins</a>, |<a href=" https://www.toyean.com/post/visitor.html#comment "Target=" _blank ">Add comments</a>(1)</p><hr/><h3>Latest comments:</h3><ul><li><a href=" https://www.toyean.com/post/visitor.html#comment -2740">2022-02-20 12:00:33 PM</a>, Sys: Support, thanks for providing</ Li></ul><h3>Related articles:</h3><ul><li><a href=“ https://www.toyean.com/post/allowurl.html ">ZBlogPHP domain name authorization plug-in - AllowURL</a>(2016-09-29)</li><li><a href=" https://www.toyean.com/post/viewall.html ">Read more on zblog [View Full Text] Plug in</a>(2021-02-18)</li><li><a href=" https://www.toyean.com/post/tagtolist.html ">Text Custom Keywords Article List Plug in</a>(2022-01-08)</li><li><a href=" https://www.toyean.com/post/ads.html ">zblog advertising insert</a>(2021-12-26)</li><li><a href=" https://www.toyean.com/post/adviceplugin.html ">The Tuoyuan Feedback Plug in has been released!</a>(2017-05-10)</li></ul><a target=" _blank "title=" Alibaba Cloud offers "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Fri, 11 Feb 2022 11:48:13 +0800 Solution of time synchronization failure in win10 system https://www.toyean.com/post/windows-time.html <p>On January 28, 2022, the problem of Windows system time anomaly occurred in many places in China, and the synchronization time failed. It can be solved by replacing the NTP address of Tencent</ p> <p>Right click the time in the lower right corner of the system, and select Adjust Date/Time:</p><p style="text align: center;"><img class="ue image" src=“ https://www.toyean.com/zb_users/upload/2022/01/202201281643381113405392.png "Alt=" Adjust Date/Time "/></p><p>Click the Region menu on the left, find the relevant settings under the region settings, and click Other Date, Time, and Region Settings:</p><p style=" text align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2022/01/202201281643381392283258.png "Alt=" Other date, time and regional settings "/></p><p>Click" Set time and date "under" Date and time "in the pop-up window:</p><p style=" text align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2022/01/202201281643381569434651.png "Alt=" Set the time and date "/></p><p>Click the" Internet Time "tab in the pop-up window, click the" Change Settings "button, and manually modify the server address in the new window to the address in the following figure. Click the" Update Now "button, and then click OK to solve the problem that the window system time cannot be synchronized.</p><p><br/></p><p style=" text-align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2022/01/202201281643380709269812.png "Alt=" Internet time "/></p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/windows-time.html "Target=" _blank ">Continue to read the full text of Solution to Time Synchronization Failure in Win10 System...</a></p><p>Classification: Essays | Tags:<a href=" https://www.toyean.com/tags-6.html ">Microsoft</a>, |<a href=" https://www.toyean.com/post/windows-time.html#comment "Target=" _blank ">Add comments</a>(0)</p><p><a href=" https://www.toyean.com/post/windows-time.html#comment "Target=" _blank ">There are no comments yet. What would you say?</a></p><h3>Related articles:</h3><ul><li><a href=" https://www.toyean.com/post/249.html ">No network provider accepts the specified network path</a>(2011-12-22)</li><li><a href=" https://www.toyean.com/post/WindowsPhotoViewer.html ">Windows Photo Viewer and FAQ Solution in win10</a>(2020-10-18)</li><li><a href=" https://www.toyean.com/post/259.html ">Win7 display camera method</a>(2012-02-08)</li><li><a href=" https://www.toyean.com/post/jpgrar.html ">How to hide RAR into JPG</a>(2011-12-24)</li><li><a href=" https://www.toyean.com/post/win7-photoshop-open.html ">Solution for Photoshop can't be opened by dragging under win7</a>(2012-07-05)</li></ul><a target=" _blank "title=" Alibaba Cloud discount "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Fri, 28 Jan 2022 23:14:50 +0800 Body custom keyword article list plug-in https://www.toyean.com/post/tagtolist.html <p>This is a plugin that calls the article list through keywords or tags. It supports setting independent keywords or tags for each article, and calls all article titles containing this keyword/tag name in the whole site to display on the page. Each tagged article list displays 10 articles by default, and the number of calls is modified on the plugin setting page</ p> <p>The tone of the tag article list follows the pure theme setting, with its own daytime and nighttime switching, adaptive to the mobile terminal</ p> <p>The plug-in has the following function options:<br/></p><h3>List Type<br/></h3><p>[User defined Keywords]: fill in a custom keyword matching [whole site] article list in the format of "Keyword 1, Keyword 2, Keyword 3"</ p> <p>[Tag ID]: fill in the list of articles whose tag ID matches [the whole station or contains this tag] (the tag ID is viewed in the tag management on the left), in the format of "1,2,3"</ p> <p>* Prompt: Fill in keywords or tag IDs when creating or editing articles/pages. Multiple keywords/tag IDs are separated by commas in English, with no commas at the beginning and end</ p> <h3>Matching tag article range<br/></h3><p>[Matching all site articles]: matching [keyword or tag ID] in all site articles</ p> <p>[Match articles with this tag]: only match articles with the set tag ID</ p> <h3>Matching condition</h3><p>[Match title only]: get the articles with the set keyword or tag name in the title</ p> <p>[Match title and content]: Get articles with set keywords or tag names in the title and body</ p> <p>[Exclude the current article]: Exclude the current article from the list</ p> <p>[Sort by browse volume]: Sort by browse volume from high to low</ p> <h3>Maximum number of article lists</h3><p>You can set the number of articles displayed in each list. If left blank, 10 articles will be displayed by default</ p> <p><br/></p><p>Plug in Functions and Settings Interface:</p><p style="text align: center;"><img class="ue image" src=“ https://www.toyean.com/zb_users/upload/2022/01/202201141642142668269337.png "Title=" QQ screenshot 20220114135432. png "alt=" QQ screenshot 20220114135432. png "/></p><p>Call keyword article list:</p><p style=" text align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2022/01/202201141642142987410902.png "Title=" QQ screenshot 20220114144620. png "alt=" QQ screenshot 20220114144620. png "/></p><p style=" text align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2022/01/202201081641639990235086.png "Title=" QQ screenshot 20220108180233. png "alt=" QQ screenshot 20220108180233. png "/></p><p>Call tag article list:</p><p style=" text align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2022/01/202201141642143330846845.png "Title=" QQ screenshot 20220114144620. png "alt=" QQ screenshot 20220114144620. png "/></p><p style=" text align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2022/01/202201081641640007912994.png "Title=" QQ Screenshot 20220108180301. png "alt=" QQ Screenshot 20220108180301. png "/></p><p><strong>2022-02-09 Update V1.3</strong></p><p>- Switch to sort new views from high to low;</p><p>- Fix an error in tag ID matching criteria;</p><p><strong style=" white space: normal; ">Update V1.2 on 2022-01-21</strong></p><p>- add the function of excluding the current article;</p><p>- add and disable the configuration function of plug-ins;</p><p><strong>update V1.1 on 2022-01-14</strong></p><p>- optimize plug-ins do not depend on pure themes, and all themes can be used;</p><p>- add new criteria list types, list ranges, and list criteria; </p><p>- Rename plug-in ID, original ID: tpure pagetag list</ p> <p><strong>Release V1.0 on 2022-01-08</strong></p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/tagtolist.html "Target=" _blank ">Continue to read the full text of the Body Custom Keyword Article List Plug in...</a></p><p>Classification: Free Plug in | Tags:<a href=" https://www.toyean.com/tags-63.html ">Tuoyuan</a>,<a href=" https://www.toyean.com/tags-122.html ">zblog</a>,<a href=" https://www.toyean.com/tags-130.html ">Plug ins</a>, |<a href=" https://www.toyean.com/post/tagtolist.html#comment "Target=" _blank ">Add comments</a>(0)</p><p><a href=" https://www.toyean.com/post/tagtolist.html#comment "Target=" _blank ">There are no comments yet. What would you say?</a></p><h3>Related articles:</h3><ul><li><a href=" https://www.toyean.com/post/toyean_group.html ">The theme of zblog group purchase Tuoyuan Group Purchase is dedicated by the theme creation team of Tuoyuan zblog</a>(2012-11-19)</li><li><a href=" https://www.toyean.com/post/tstar.html ">Tuoyuan responsive visual theme TStar released!</a>(2013-05-06)</li><li><a href=" https://www.toyean.com/post/simida.html ">zblog Impressionist theme release!</a>(2014-01-01)</li><li><a href=" https://www.toyean.com/post/jshop-template.html ">Tutorial on using commodity template code of Tuoyuan JD store</a>(2013-10-15)</li><li><a href=" https://www.toyean.com/post/zblog-keywords-tagtoname.html ">Solution to not displaying zblog keywords</a>(2012-09-15)</li></ul><a target=" _blank "title=" Alibaba Cloud offers "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Sat, 08 Jan 2022 18:22:50 +0800 Zblog ad slot https://www.toyean.com/post/ads.html <p>Customize the advertising code on the computer and mobile terminals, and insert advertising space in the theme freely without modifying the theme source code</ p> <p>Theme exchange group:<a href=“ https://www.toyean.com/go/zbloggroup "Target=" _blank ">ZBlog China (491920017)</a></p><p><br/></p><p>Example of calling code:</p><pre class=" Prism height Prism language javascript ">&lt;! -- Advertising calling code --&gt; &lt; script&nbsp;src=&quot; Replace here with your web address/zb_users/plugin/ads/ads.php? Obj=. banner&quot;&gt;&lt;/script&gt;</pre><p>The value of the parameter obj (in red font) represents the insertion point of the jQuery selector. Copy the above code, and change the red content to the element selector inserted in the advertising location. Other parts do not need to be changed</ p> <p>The red part (. banner) indicates that the advertisement will be inserted into the foreground&lt*** class=&quot;banner&quot;&gt;&lt;/***&gt; Within the element</ p> <p>Paste the modified code into "Basic Settings" - "Advertising Call Code", and you can add multiple lines to insert them into different selectors</ p> <p>This advertising plug-in realizes the purpose of inserting advertisements without changing the theme source code</ p> <p>The calling code will automatically judge the computer side and mobile side. Please fill in the computer side and mobile side advertising code in the basic settings</ p><p style="text-align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/12/202112261640531226415181.png "Alt=" Ad Insert. png "/></p><p>to<a href=" https://www.toyean.com/post/tpure.html "Target=" _blank ">Pure theme</a>as an example, add a custom navigation example above the list of articles on the home page:</p><p>Fill in the advertisement calling code:<br/></p><pre class=" Prism height Prism language markup ">&lt; script&nbsp;src=&quot; This is modified as the website domain name/zb_users/plugin/ads/ads.php? Obj=. index&nbsp;. custom&quot;&gt;&lt;/script&gt;</pre><p>Fill in the advertisement code of the computer and mobile phone (you can change the display link between the PC and the computer to display different link content at both ends):<br/></p><pre class="Prism height Prism language markup">&lt; div&nbsp;class=&quot;ads_plugin&nbsp;block&quot;&gt; &lt; h3&gt; Industry classification&lt/ h3&gt; &lt; ul&gt; &lt; Li&gt;&lt; a&nbsp; href=&quot; #&quot;&nbsp; target=&quot; _blank&quot;&gt; zblog theme&lt/ a&gt;&lt;/li&gt; &lt; Li&gt;&lt; a&nbsp; href=&quot; #&quot;&nbsp; target=&quot; _blank&quot;&gt; zblog plug-in&lt/ a&gt;&lt;/li&gt; &lt; Li&gt;&lt; a&nbsp; href=&quot; #&quot;&nbsp; target=&quot; _blank&quot;&gt; zblog application&lt/ a&gt;&lt;/li&gt; &lt; Li&gt;&lt; a&nbsp; href=&quot; #&quot;&nbsp; target=&quot; _blank&quot;&gt; zblog Tutorials&lt/ a&gt;&lt;/li&gt; &lt; Li&gt;&lt; a&nbsp; href=&quot; #&quot;&nbsp; target=&quot; _blank&quot;&gt; zblog Video&lt/ a&gt;&lt;/li&gt; &lt; Li&gt;&lt; a&nbsp; href=&quot; #&quot;&nbsp; target=&quot; _blank&quot;&gt; zblog installation&lt/ a&gt;&lt;/li&gt; &lt; Li&gt;&lt; a&nbsp; href=&quot; #&quot;&nbsp; target=&quot; _blank&quot;&gt; zblog official website&lt/ a&gt;&lt;/li&gt; &lt;/ ul&gt; &lt;/ Div&gt;</pre><p>Fill in custom CSS:<br/></p><pre class="Prism height Prism language css">. ads_plugin&nbsp; {&nbsp; margin-bottom:10px;&nbsp;padding-bottom:10px;&nbsp;} .ads_plugin&nbsp; h3&nbsp; {&nbsp; margin-bottom:10px;&nbsp;padding-bottom:10px;&nbsp;font-size:18px;&nbsp;border-bottom:1px&nbsp;dotted&nbsp;#eee;&nbsp;} .ads_plugin&nbsp; ul&nbsp; {&nbsp; margin-left:-16px;&nbsp;} .ads_plugin&nbsp; li&nbsp; {&nbsp; margin:0&nbsp;0&nbsp;10px&nbsp;16px;&nbsp;display:inline-block;&nbsp;vertical-align:top;&nbsp;} .ads_plugin&nbsp; li&nbsp;a&nbsp; {&nbsp; font-size:14px;&nbsp;color:#666;&nbsp;} .ads_plugin&nbsp; li&nbsp;a:hover&nbsp; {&nbsp; color:#0188fb;&nbsp;} .night&nbsp;. ads_plugin&nbsp;h3&nbsp; {&nbsp; color:#ccc;&nbsp;border-color:#3a3a3a;&nbsp;} .night&nbsp;. ads_plugin&nbsp;li&nbsp;a&nbsp; {&nbsp; color:#ccc;&nbsp;} .night&nbsp;. ads_plugin&nbsp;li&nbsp;a:hover&nbsp; {&nbsp; color:#0188fb;&nbsp;} @media&nbsp; screen&nbsp;and&nbsp; (max-width:&nbsp;750px){ .ads_plugin&nbsp; {&nbsp; margin-bottom:8px;&nbsp;padding-bottom:0;&nbsp;} }</pre><p>The renderings are as follows:</p><p style="text align: center;"><img class="ue image" src=“ https://www.toyean.com/zb_users/upload/2023/06/202306041685876634364374.png "Alt=" Ad mini plug - plug-in example "/></p><p>Update log:</p><p><strong>2023-06-12 update V1.1</strong></p><p>- new ad insertion method (depend/append/before/after);</p><p>- new no refresh submission switch;</p><p>- modify the configuration page class name to prevent the browser from blocking the ad plug-in;</p><p><strong>2021-12-26 release V1.0</strong></p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/ads.html "Target=" _blank ">Continue to read the full text of the Zblog Advertising Inserts...</a></p><p>Classification: free plug-ins | Tags:<a href=" https://www.toyean.com/tags-63.html ">Tuoyuan</a>,<a href=" https://www.toyean.com/tags-122.html ">zblog</a>,<a href=" https://www.toyean.com/tags-130.html ">Plug ins</a>, |<a href=" https://www.toyean.com/post/ads.html#comment "Target=" _blank ">Add comments</a>(2)</p><hr/><h3>Latest comments:</h3><ul><li><a href=" https://www.toyean.com/post/ads.html#comment -2751">2023-08-26 12:18:29 PM</a>, sharehk : 403 Forbidden Access to this resource on the server is denied! SAVE cannot</li><li><a href=“ https://www.toyean.com/post/ads.html#comment -2752">2023-08-26 12:18:32 PM</a>, sharehk : 403 Forbidden Access to this resource on the server is denied! SAVE cannot</li></ul><h3>Related articles:</h3><ul><li><a href=“ https://www.toyean.com/post/viewall.html ">Read more on zblog [View Full Text] Plug in</a>(2021-02-18)</li><li><a href=" https://www.toyean.com/post/articlelinkurl.html ">The article jumps to the user-defined link plug-in</a>(2021-12-23)</li><li><a href=" https://www.toyean.com/post/adviceplugin.html ">Tuoyuan Feedback Plug in Released!</a>(2017-05-10)</li><li><a href=" https://www.toyean.com/post/allowurl.html ">ZBlogPHP domain name authorization plug-in - AllowURL</a>(2016-09-29)</li><li><a href=" https://www.toyean.com/post/visitor.html ">Visitor counter plug-in</a>(2022-02-11)</li></ul><a target=" _blank "title=" Alibaba Cloud discount "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Sun, 26 Dec 2021 23:02:53 +0800 Article Jump Custom Link Plug in https://www.toyean.com/post/articlelinkurl.html <p>Add an automatic jump link for the specified article or page. When you visit the article or page, it will automatically jump to the set link page. If it is left blank, it will not jump. You can use it by enabling the plug-in</ p><p style="text-align: center; "><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/12/202112231640272625406705.png "Title=" QQ screenshot 20211223231416. png "alt=" QQ screenshot 20211223231416. png "/></p><p><strong>Publish V1.0 on 2021-12-23</strong></p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/articlelinkurl.html "Target=" _blank ">Continue to read the full text of the article jump custom link plug-in...</a></p><p>Classification: free plug-in | Tags:<a href=" https://www.toyean.com/tags-122.html ">zblog</a>,<a href=" https://www.toyean.com/tags-130.html ">Plug ins</a>,<a href=" https://www.toyean.com/tags-63.html ">Tuoyuan</a>, |<a href=" https://www.toyean.com/post/articlelinkurl.html#comment "Target=" _blank ">Add comments</a>(0)</p><p><a href=" https://www.toyean.com/post/articlelinkurl.html#comment "Target=" _blank ">There are no comments yet. What would you say?</a></p><h3>Related articles:</h3><ul><li><a href=" https://www.toyean.com/post/visitor.html ">Visitor counter plug-in</a>(2022-02-11)</li><li><a href=" https://www.toyean.com/post/ads.html ">zblog advertising insert</a>(2021-12-26)</li><li><a href=" https://www.toyean.com/post/tagtolist.html ">Text Custom Keywords Article List Plug in</a>(2022-01-08)</li><li><a href=" https://www.toyean.com/post/clicktip.html ">Tuoyuan Click Prompt Plug in</a>(2017-12-13)</li><li><a href=" https://www.toyean.com/post/adviceplugin.html ">The Tuoyuan Feedback Plug in has been released!</a>(2017-05-10)</li></ul><a target=" _blank "title=" Alibaba Cloud offers "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Thu, 23 Dec 2021 23:14:39 +0800 The method of adding navigation column icons to Tuoyuan Pure Theme https://www.toyean.com/post/menuicon.html <p> Take the Tuoyuan Pure Theme as an example to add icons to the navigation column, refer to the following methods: </p> <p> 1. Visit the AliIconfont icon library website, find and select the icons to be used, and add them to the project in batch. </p> <p style="text-align: center;"> <img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/11/202111111636605809665096.png "Alt=" How to add navigation column icons to Tuoyuan Pure Theme (1) "/> </p> <p> 2. Click "Resource Management" - "My Project" to find the "Navigation Bar Icon" project just created. If the color icon is used, you need to click "Project Settings", check "Color" in the font format, and generate the Font class online code after saving (hint: every time you adjust the icon or setting in the project, you need to regenerate the Font class code). </p> <p style="text-align: center;"> <img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/11/202111111636604463660827.png "Alt=" How to add navigation column icons to Tuoyuan Pure Theme (2) "/> </p> <p> 3. Fill the class name (such as icon shouye) corresponding to each icon in the above figure into the corresponding text box under "Module Management - Navigation Bar - Icon" on the left side of the background of zblog, and add an iconfont class name separated by a space. As shown in the figure below: </p> <p> <br/> </p> <p style="text-align: center;"> <img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/11/202111111636604486729796.png "Alt=" How to add navigation column icons to Tuoyuan Pure Theme (3) "/> </p> <p> 4. Go to Tuoyuan Pure Theme (Theme Settings - SEO Settings - Custom Code Block - Header General Code) Settings and fill in the online code generated by the icon project. The format is shown as follows: </p> <p style="text-align: center;"> <img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/11/202111111636604503561440.png "Alt=" How to add navigation column icons to Tuoyuan Pure Theme (4) "/> </p> <p> After saving, return to the homepage of the website, and you can see the final effect of adding icons as follows: </p> <p style="text-align: center;"> <img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/11/202111111636604511496885.png "Alt=" How to add navigation column icons to Tuoyuan Pure Theme (5) "/> </p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/menuicon.html "Target=" _blank ">Continue to read the full text of How to Add Navigation Column Icons to Tuoyuan Pure Theme...</a></p><p>Classification: Essays | Tags: |<a href=" https://www.toyean.com/post/menuicon.html#comment "Target=" _blank ">Add comments</a>(0)</p><p><a href=" https://www.toyean.com/post/menuicon.html#comment "Target=" _blank ">There are no comments yet. What would you say?</a></p><h3>Related articles:</h3><ul><li><a href=" https://www.toyean.com/post/161.html ">Only you and I are on the way of love</a>(2011-04-09)</li><li><a href=" https://www.toyean.com/post/202.html ">How to become a leader</a>(2011-05-26)</li><li><a href=" https://www.toyean.com/post/jae-jd.html ">JD Cloud Engine builds a free zblogPHP tutorial</a>(2014-05-18)</li><li><a href=" https://www.toyean.com/post/goodman.html ">The standard of a good man</a>(2011-03-21)</li><li><a href=" https://www.toyean.com/post/134.html ">Thirteen Deadlines for Private Enterprises</a>(2011-03-29)</li></ul><a target=" _blank "title=" Alibaba Cloud Offers "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Thu, 11 Nov 2021 12:00:00 +0800 ZBlog Universal Video Plug in https://www.toyean.com/post/zbvideo.html <p>A general video plug-in, which supports uploading MP4 or third-party video sharing codes and adapts to the mobile terminal</ p> <p>This function is included in some themes of Tuoyuan, so it is unnecessary to use this plug-in. When the theme with this function switches to other themes, the plug-in will seamlessly connect videos</ p> <p>Plug in front-end effect:</p><p><img class="ue image" src=“ https://www.toyean.com/zb_users/upload/2021/10/202110161634346687293658.jpg "Alt=" Front end effect of general video plug-in "/></p><p>Back end effect of plug-in:</p><p><img class=" ue image "src=" https://www.toyean.com/zb_users/upload/2021/10/202110161634346775140252.png "Title=" zbvideo01. png "alt=" zbvideo01. png "/></p><p><br/></p><p><strong>Publish V1.0 in 2021-10-16</strong></p><p><p> © Copyright Birdol.Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/zbvideo.html "Target=" _blank ">Continue to read the full text of ZBlog Universal Video Plug ins...</a></p><p>Classification: free plug-ins | Tags:<a href=" https://www.toyean.com/tags-63.html ">Tuoyuan</a>,<a href=" https://www.toyean.com/tags-122.html ">zblog</a>,<a href=" https://www.toyean.com/tags-127.html ">ZBlogPHP</a>,<a href=" https://www.toyean.com/tags-129.html ">zblog plug-in</a>, |<a href=" https://www.toyean.com/post/zbvideo.html#comment "Target=" _blank ">Add comments</a>(0)</p><p><a href=" https://www.toyean.com/post/zbvideo.html#comment "Target=" _blank ">There are no comments yet. What would you say?</a></p><h3>Related articles:</h3><ul><li><a href=" https://www.toyean.com/post/jpgrar.html ">How to hide RAR into JPG</a>(2011-12-24)</li><li><a href=" https://www.toyean.com/post/tagtolist.html ">Text Custom Keywords Article List Plug in</a>(2022-01-08)</li><li><a href=" https://www.toyean.com/post/hellozblog2.0.html ">Tuoyuan's first set of zblog2.0 theme: hellozblog2.0</a>(2012-09-26)</li><li><a href=" https://www.toyean.com/post/wulongmao.html ">Original Oolong Cat zblog topic</a>(2012-06-17)</li><li><a href=" https://www.toyean.com/post/LoginUI.html ">Login UI plug-in download on ZBlog landing page</a>(2015-05-10)</li></ul><a target=" _blank "title=" Alibaba Cloud discount "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Sat, 16 Oct 2021 07:53:23 +0800 Website Sentry plug-in [content protection] - sentinel https://www.toyean.com/post/sentinel.html <p>A plug-in that restricts content selection and copying, and prevents right clicking and debugging</ p><p><img class="ue-image" src=" https://www.toyean.com/zb_users/upload/2021/06/202106221624345441863501.png "/></p><p><p>Release V1.0 on 2021-06-20</p><p>- Restrict text selection;</p><p>- Disable right-click menu and website debugging;</p><p>- Disable shortcut keys (F12 Ctrl+S、Ctrl+Shift+I、Ctrl+Shift+J);</p><p> ©Copyright Birdol. Com 2006-2014.</p><p><a href=" https://www.toyean.com/post/sentinel.html "Target=" _blank ">Continue to read the full text of Website Sentinel Plug ins [Content Protection] - sentinel...</a></p><p>Classification: Free Plug ins | Tags: |<a href=" https://www.toyean.com/post/sentinel.html#comment "Target=" _blank ">Add comments</a>(0)</p><p><a href=" https://www.toyean.com/post/sentinel.html#comment "Target=" _blank ">There are no comments yet. What would you say?</a></p><h3>Related articles:</h3><ul><li><a href=" https://www.toyean.com/post/articlelinkurl.html ">The article jumps to the user-defined link plug-in</a>(2021-12-23)</li><li><a href=" https://www.toyean.com/post/zbvideo.html ">ZBlog Universal Video Plug in</a>(2021-10-16)</li><li><a href=" https://www.toyean.com/post/ads.html ">zblog advertising insert</a>(2021-12-26)</li><li><a href=" https://www.toyean.com/post/allowurl.html ">ZBlogPHP domain name authorization plug-in - AllowURL</a>(2016-09-29)</li><li><a href=" https://www.toyean.com/post/tagtolist.html ">The body custom keyword article list plug-in</a>(2022-01-08)</li></ul><a target=" _blank "title=" Alibaba Cloud offers "href=" http://www.birdol.com/redirect/?s=6 "><img alt="Z-Blog" src=" http://www.birdol.com/aliyun/qingdao950x90.jpg "></a> Tue, 22 Jun 2021 14:36:42 +0800