We often see ads appear after a few seconds and then disappear. Let's use the JQuery framework to implement this function. The code is as follows: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Automatic display and hiding of advertisements</title> <style> #content{width:100%;height:500px;background:#999} </style> <!--Introduce jQuery--> <script type="text/javascript" src="../js/jquery-3.3.1.min.js"></script> <script> /* need: 1. When the page is loaded, 3 seconds later. Automatically display ads 2. The ads will automatically disappear after being displayed for 5 seconds. analyze: 1. Use a timer to complete. setTimeout (execute a timer) 2. Analysis found that JQuery's display and hide animation effects are actually controlling display 3. Use the show/hide method to display the ad*/ //Entry function, after the page is loaded, define the timer and call these two methods$(function () { //Define a timer, call the adShow method and execute setTimeout(adShow,3000) once 3 seconds later; //Define a timer, call the adHide method, and execute setTimeout(adHide,8000) after 8 seconds; }); //Display ads function adShow() { //Get the ad div and call the display method $("#ad").show("slow"); } //Hide ads function adHide() { //Get the ad div and call the hide method $("#ad").hide("slow"); } </script> </head> <body> <!-- Overall DIV --> <div> <!-- Advertisement DIV --> <div id="ad" style="display: none;"> <img style="width:100%" src="../img/adv.jpg" /> </div> <!-- Main text below --> <div id="content"> Body part</div> </div> </body> </html> Directory structure:Running results:When I first entered, the ad did not appear. Three seconds later, the ad appears The ad will disappear after five seconds. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
>>: Detailed explanation of linux nslookup command usage
Find the problem Recently, I found a problem at w...
Table of contents Easy to use Create a project vu...
Without further ado, here is a demo picture. The ...
This article shares the installation tutorial of ...
The <input> tag The <input> tag is us...
First look at the effect: html <a href="#...
EXPLAIN shows how MySQL uses indexes to process s...
Preface The language classification of SQL mainly...
Optimizing large amounts of database data is a hu...
Table of contents 1. How to switch 2. Dynamically...
MySQL 8 brings a brand new experience, such as su...
Friends who are doing development, especially tho...
1. Modify 1 column update student s, city c set s...
Generate a certificate chain Use the script to ge...
This article shares the installation tutorial of ...