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

  • 相关阅读:
    Docker的使用
    Django常见问题
    Linux系统使用
    Nginx
    Redis
    MySQL基础、主从复制、优化
    Python常见的问题
    Python基础知识
    Vue的使用
    python监控tomcat日记文件
  • 原文地址:https://www.cnblogs.com/mane/p/1830002.html
Copyright © 2011-2022 走看看