封装动画函数

function animate(obj, target, callback) {
    clearInterval(obj.times);
    obj.times = setInterval(function() {
        var step = (target - obj.offsetLeft) / 10;
        step = step > 0 ? Math.ceil(step) : Math.floor(step);
        if (obj.offsetLeft == target) {
            clearInterval(obj.times);
            if (callback) {
                callback();
            }
        }
        obj.style.left = obj.offsetLeft + step + 'px';
    }, 15)
}
posted @ 2021-09-16 12:31    阅读(24)  评论(0编辑  收藏  举报