JS运动技术

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

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运动技术)