function nexts(ele, tag) {
clearInterval(ele.moveID)
ele.moveID = setInterval(function () {
if (ele.offsetLeft == tag) {
clearInterval(ele.moveID)
} else {
var tst = (tag-ele.offsetLeft)/10;
var tst = tst>0?Math.ceil(tst):Math.floor(tst);
ele.style.left = ele.offsetLeft+tst + ‘px’;
}
}, 20)
}
一个简单的封装动画
最新推荐文章于 2024-11-03 16:40:52 发布