本文实例为大家分享了js实现左右缓动动画函数的封装代码,供大家参考,具体内容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<!DOCTYPE html> < html > < head > < meta charset = "utf-8" > < link rel = "stylesheet" href = "bootstrap-4.4.1.css" > < style > .box{ width: 100px; height: 100px; background-color: chartreuse; position:absolute; } </ style > </ head > < body > < button class = "btn1" >移动400px</ button > < button class = "btn2" >移动800px</ button > < div class = "box" ></ div > < script > let btn1 = document.querySelector('.btn1'); let btn2 = document.querySelector('.btn2'); let box = document.querySelector('.box'); btn1.onclick = function(){ animate(box,400); } btn2.onclick = function(){ animate(box,800); } // 缓动动画 function animate(element,target){ // 清除定时器 clearInterval(element.timeId); element.timeId = setInterval(function(){ // 获取元素当前的位置 let current = element.offsetLeft; // 当current越大,step越小,先快后慢 let step = (target - current) / 10; // 当step大于0时,step向上取整,否则,step向下取整 step = step > 0 ? Math.ceil(step) : Math.floor(step); current += step; element.style.left = current + 'px'; // 不用担心到达不了目标位置,因为step最小达到1 if(current == target){ clearInterval(element.timeId); } console.log("目标位置:" + target + "当前位置:" + current + "每次移动的步数:" + step); },20); } </ script > </ body > </ html > |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/persistsss/article/details/108245729