zoukankan      html  css  js  c++  java
  • 符合标准的随滚动条滚动的广告代码,在滚动条右侧滚动

    网页特效代码:符合标准的随滚动条滚动的广告代码,在滚动条右侧滚动

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>符合标准的随滚动条滚动的广告代码dwww.cn</title>
    </head>
    <body>
    <div id="sorollDiv1" style="30px; height:50px; background-color:#0000ff; right:10px;position:absolute;top:120px;"></div>
    <script type="text/javascript">
    var lastScrollY=0;
    function heartBeat(){
    diffY=document.documentElement.scrollTop;
    percent=0.1*(diffY-lastScrollY);
    if(percent>0)percent=Math.ceil(percent);
    else percent=Math.floor(percent);
    document.getElementById("sorollDiv1").style.top=parseInt(document.getElementById("sorollDiv1").style.top)+percent+"px";
    lastScrollY=lastScrollY+percent;
    }
    window.setInterval("heartBeat()",1);
    </script>
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    </body>
    </html>
  • 相关阅读:
    (转)重识new
    【洛谷习题】连续自然数和
    【AHOI2005】约数研究
    【NOIP2003】麦森数
    康托展开
    【洛谷习题】南蛮图腾
    【洛谷习题】吃奶酪
    【NOIP2002】字串变换
    哈希表
    【NOIP2013】货车运输
  • 原文地址:https://www.cnblogs.com/JensonBin/p/1908304.html
Copyright © 2011-2022 走看看