概述
动画速度由快到慢
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
div {
width: 100px;
height: 100px;
background-color: pink;
position: absolute;
left: 0;
opacity: 0.3;
}
</style>
</head>
<body>
<button id="btn200">200</button>
<button id="btn400">400</button>
<div id="box"></div>
</body>
</html>
<script>
var btn200 = document.getElementById("btn200");
var btn400 = document.getElementById("btn400");
var box=document.getElementById("box");
btn200.οnclick=function(){
animate(box,200);
}
btn400.οnclick=function(){
animate(box,400);
}
var timer=null;
function animate(obj,target){
obj.timer=setInterval(function(){
var speed=(target-obj.offsetLeft)/10;
speed=speed>0?Math.ceil(speed):Math.floor(speed);
console.log(speed);
obj.style.left=obj.offsetLeft+speed+"px";
if(obj.offsetLeft==target){
clearInterval(obj.timer);
}
},50);
}
</script>
最后
以上就是时尚银耳汤为你收集整理的缓动动画原理--封装基本函数的全部内容,希望文章能够帮你解决缓动动画原理--封装基本函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复