我是靠谱客的博主 仁爱黄豆,最近开发中收集的这篇文章主要介绍js动画封装-animate,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

// var timerId = null;
// 封装动画的函数
function animate(element, target) {
// 通过判断,保证页面上只有一个定时器在执行动画
if (element.timerId) {
clearInterval(element.timerId);
element.timerId = null;
}

element.timerId = setInterval(function () {
// 步进 每次移动的距离
var step = 10;
// 盒子当前的位置
var current = element.offsetLeft;
// 当从400 到 800 执行动画
// 当从800 到 400 不执行动画

// 判断如果当前位置 > 目标位置 此时的step
要小于0
if (current > target) {
step = - Math.abs(step);
}
// Math.abs(current - target)
<= Math.abs(step)
if (Math.abs(current - target)
<= Math.abs(step)) {
// 让定时器停止
clearInterval(element.timerId);
// 让盒子到target的位置
element.style.left = target + 'px';
return;
}
// 移动盒子
current += step;
element.style.left = current + 'px';

}, 5);
}

最后

以上就是仁爱黄豆为你收集整理的js动画封装-animate的全部内容,希望文章能够帮你解决js动画封装-animate所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部