zoukankan      html  css  js  c++  java
  • JS大幅卷屏广告代码

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
     <HEAD>
      <TITLE>JS大幅卷屏广告代码</TITLE>
     </HEAD>
    <BODY>
    <script language="javascript">
    function $(ele){return document.getElementById(ele)}
    var popIMG={
    stimer:null,
    etimer:null,
    init:function(imgurl,width,height){this.imgurl=imgurl;this.width=width;this.height=height;},
    createE:function(){
    var obj=document.createElement("div");
    obj.id="imgid";
    obj.style.width=popIMG.width+"px";
    obj.style.height=popIMG.height+"px";
    //obj.style.backgroundColor="red";
    obj.style.top=0+"px";
    obj.style.left=Math.ceil((document.body.clientWidth-popIMG.width)/2)+"px";
    obj.style.position="absolute";
    obj.style.zIndex=100;
    obj.style.overflow="hidden"
    var img=document.createElement("img");
    img.style.width=popIMG.width+"px";
    img.style.height=popIMG.height+"px";
    img.src=popIMG.imgurl;
    obj.appendChild(img);
    document.body.appendChild(obj);
    },
    start:function(){
    popIMG.createE();
    popIMG.stimer=setTimeout("popIMG.fade()",3000);
    },
    fade:function(){
    if(popIMG.stimer)clearTimeout(popIMG.stimer);
    $("imgid").style.height=(parseInt($("imgid").style.height)-5)+"px";
    popIMG.etimer=setTimeout("popIMG.fade()",10);
    if(parseInt($("imgid").style.height)<=0){clearTimeout(popIMG.etimer);$("imgid").innerHTML="";document.body.removeChild($("imgid"));}
    }
    }
    popIMG.init("/jscss/demoimg/site.gif",1021,675);
    window.onload=popIMG.start;
    </script>
    </BODY>
    </HTML>

    本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/mane_yao/archive/2010/03/25/5415384.aspx

  • 相关阅读:
    ubuntu系统上常用的开发工具
    wamp环境下安装pear
    PHP中preg_match_all函数用法使用详解
    晚睡对策
    iphone相关
    090213 阴
    月曜日の予定(10:30までREVIEW  10:00まで完成予定)
    一个通知
    我还没走
    星期5
  • 原文地址:https://www.cnblogs.com/mane/p/1830002.html
Copyright © 2011-2022 走看看