定時器:
setInterval & clearInterval
setTimeout & clearTimeoutjavascript
顯示: img.style.display = "block"
隱藏: img.style.display = "none"html
img 對象
style屬性: style對象java
當用戶打開界面,3秒鐘以後彈出廣告,這個廣告顯示5秒鐘,隱藏廣告jquery
定時器: setTimeout
顯示和隱藏: style.display = "block/none"ide
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="../js/jquery-1.11.0.js" ></script> <!-- 1. 導入JQ的文件 2. 編寫JQ的文檔加載事件 3. 啓動定時器 setTimeout("",3000); 4. 編寫顯示廣告的函數 5. 在顯示廣告裏面再啓動一個定時器 6. 編寫隱藏廣告的函數 --> <script> //顯示廣告 function showAd(){ $("#img1").slideDown(2000); setTimeout("hideAd()",3000); } //隱藏廣告 function hideAd(){ $("#img1").slideUp(2000); } $(function(){ setTimeout("showAd()",3000); }); </script> </head> <body> <img src="../img/f001a62f-a49d-4a4d-b56f-2b6908a0002c_g.jpg" id="img1" width="100%" style="display:none" /> </body> </html>