免費論壇 繁體 | 簡體
Sclub交友聊天~加入聊天室當版主
分享
Board logo

标题: [建站代码] 网页顶部全屏自动伸缩广告 [打印本页]

作者: 竞技鱼    时间: 2017-6-1 10:10     标题: 网页顶部全屏自动伸缩广告

[attach]765[/attach][attach]764[/attach]


在广告里放
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=gb2312">
  5. <script language=javascript type="text/javascript">
  6. var hmax = 625-1;//最大高度
  7. var hmin = 25;//最小高度
  8. var h=0;
  9. function addCount(){
  10.         if(h<hmax){
  11.                 h += 20;
  12.                 setTimeout("addCount()",1);
  13.         }
  14.         else {
  15.                 h=hmax;
  16.                 setTimeout("noneAds()",3000); //停留时间自己适当调整,1000 = 1秒
  17.                 document.getElementById("adsOPEN").style.display = "none";
  18.         }
  19.         document.getElementById("ads").style.display = "";
  20.         document.getElementById("ads").style.height = h+"px";
  21. }
  22. window.onload = function showAds(){
  23.         document.getElementById("ads").style.display = "none";
  24.         document.getElementById("ads").style.height = "0px";
  25.         addCount(); //慢慢打开
  26. //        h=hmax;
  27. //        setTimeout("noneAds()",3000); //停留时间自己适当调整,1000 = 1秒
  28. }
  29. function openAds(){
  30.         h = 0;//高度
  31.         addCount(); //慢慢打开
  32. }
  33. function noneAds(){
  34.         if(h>hmin)        {
  35.                 h -= 20;
  36.                 setTimeout("noneAds()",1);
  37.         }
  38.         else {
  39.                 h = hmin;
  40.                 document.getElementById("ads").style.display = "none";
  41.                 document.getElementById("adsOPEN").style.display = "";
  42.                 return;
  43.         }
  44.         document.getElementById("ads").style.height = h+"px";
  45. }
  46. </script>
  47. </head>
  48. <body>
  49. <div id="ads" style="overflow:hidden;top:0px;text-align:center;display:none">
  50.         <img src="http://www.zzsky.cn/effect/images/201112/302130/shanhaiyun950-500.jpg">
  51. </div>
  52. <div id="adsOPEN" style="overflow:hidden;text-align:center">
  53.         <a href="javascript:openAds()"><img src="http://www.zzsky.cn/effect/images/201112/302130/ad-open.gif" border="0"></a>
  54. </div>
  55. </body>
  56. </html>
复制代码





欢迎光临 竞技鱼-电子竞技|体育竞技|唯美壁纸|火爆影音|代码素材 (http://jju.funbbs.me/) Powered by Discuz! 7.2