<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.box {
width: 100px;
height: 100px;
background-color: pink;
position: absolute;
left: 0;
top: 100px;
}
</style>
</head>
<body>
<button id="btn">move-></button>
<button id="btnone"> <-move</button>
<div class="box"></div>
<script>
var btn = document.getElementById('btn');
var btnone = document.getElementById('btnone');
var odiv = document.getElementsByTagName('div')[0];
var timer = null;//初始化一个定时器
var num = 0;
// 点击按钮让odiv向右做匀速运动
// btn.onclick = function(){
// clearInterval(timer);//防止重复点击造成定时器的紊乱
// timer = setInterval(move,20);
// }
// btnone.onclick = function(){
// clearInterval(timer);//防止重复点击造成定时器的紊乱
// timer = setInterval(moveone,20);
// }
// function move(){
// num+=5;
// if(num>=600){
// clearInterval(timer);
// }else{
// odiv.style.left = num+'px';
// }
// }
// function moveone(){
// num-=5;
// if(num<=0){
// clearInterval(timer);
// }else{
// odiv.style.left = num+'px';
// }
// }
//虽然以上方式可以实现效果,但是看起来太琐碎,可以简化处理(可以封装的函数予以封装)
btn.onclick = function(){
clearInterval(timer);//防止重复点击造成定时器的紊乱
timer = setInterval(function(){
move(500,5)
},20);
}
btnone.onclick = function(){
clearInterval(timer);//防止重复点击造成定时器的紊乱
timer = setInterval(function(){
move(0,-5)
},20);
}
function move(length,speed){
num+=speed;
if(odiv.offsetLeft === length){
clearInterval(timer);
}else{
odiv.style.left = num+'px';
// console.log(odiv.offsetLeft);
}
}
</script>
</body>
</html>
如图
image.png
网友评论