zoukankan      html  css  js  c++  java
  • JS 实现 Div 向上浮动

    Html 及 JS 代码如下:

    <div id="newsOne" onmouseover="CleartTimeInterVal();" onmouseout="resetInterVal();"
           style="position: absolute; 100px;">
           <a href="http://www.baidu.com" target="_blank">test Div</a>
       </div>
       <script type='text/javascript'>

           var newsOne = document.getElementById("newsOne");

           newsOne.style.bottom = 0;
           newsOne.style.left = window.screen.availWidth - 100;
           var bottom = 0;
           function newsScroll() {
               if (bottom > (window.screen.availHeight - window.screenTop)) {
                           bottom = 0;
                   newsOne.style.bottom = 0;

               }
               else {

                   bottom = bottom + 15;
                   newsOne.style.bottom = bottom;
               }

           }


           var timeid = setInterval(newsScroll, 300);

           function CleartTimeInterVal() {
               clearInterval(timeid);
           }
           function resetInterVal() {
               timeid = setInterval(newsScroll, 300);
           }


       </script>

  • 相关阅读:
    npm包发布过程
    react树状组件
    js数据结构处理--------扁平化数组处理为树结构数据
    js数据结构处理--------树结构数据遍历
    JS fetch
    JS promise
    JS 闭包
    JS 异步回调
    三角形加正方形
    webAPI的分类
  • 原文地址:https://www.cnblogs.com/Roy_Cao/p/2719517.html
Copyright © 2011-2022 走看看