美文网首页
JS运动技术

JS运动技术

作者: 有所惑 | 来源:发表于2013-12-16 23:10 被阅读0次

    缓冲运动的时候,速度要取整

    speed>0 ? Math.ceil() : Math.floor()

    对联悬浮,(可视区的高-悬浮DIV的高)/2

    //滚动的高度

    var scrollTop = document.documentElement.scrollTop||document.body.scroolTop;

    //div的top

    oDiv.style.top=(document.documentElement.clientHeight-oDiv.offsetHeight)/2+scrollTop+'px';

    需要对上面的取整,不然会抖动。parseInt(xxx);

    相关文章

      网友评论

          本文标题:JS运动技术

          本文链接:https://www.haomeiwen.com/subject/abqctttx.html