想用setTimeout写,为什么不对

来源:3-1 JS缓冲动画

啊啊啊啊123

2016-09-13 10:48

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>缓冲运动</title>
<style type="text/css">
*{margin: 0;padding: 0;}
#box{width: 200px;height: 200px;background-color: red;position: relative;left: -200px;top: 0;}
#box span{width: 20px;height: 50px;position: absolute;top: 50px;left: 200px;background-color: blue;}
</style>
<script type="text/javascript">
window.onload=function(){
var obox = document.getElementById('box');
obox.onmouseover = function(){
startmove(0);
}
obox.onmouseout = function(){
startmove(-200);
} 
}

var timer = null;
function startmove(iTarget){
//clearInterval(timer);
var obox = document.getElementById('box');
// timer = setInterval(function () {
//  var speed = (iTarget-obox.offsetLeft)/20;
//  speed = speed > 0?Math.ceil(speed):Math.floor(speed);
//  if (obox.offsetLeft==iTarget) {
//  clearInterval(timer);
//  }else{
//  obox.style.left = obox.offsetLeft + speed+'px';
//  }
// },30)
var speed = (iTarget-obox.offsetLeft)/20;
speed = speed > 0?Math.ceil(speed):Math.floor(speed);
function go() {
if (obox.offsetLeft==iTarget) {
obox.style.left = obox.offsetLeft + iTarget +'px';
} else{
obox.style.left = obox.offsetLeft + speed+'px';
setTimeout(go, 30);
}
}
go();
}
</script>
</head>
<body>
<div id="box"><span>分享</span></div>
</body>
</html>


写回答 关注

2回答

  • qq_一直很安静_8
    2016-09-26 20:21:55

    要检测就要不断刷新不断去获取某个元素的属性,setTimeout只能执行一次,达不到不断刷新获取属性的作用!

    啊啊啊啊12...

    setTimeout 也可以啊 递归嘛

    2016-09-26 21:41:10

    共 1 条回复 >

  • qq_盗火人_0
    2016-09-13 11:21:16

    setTimeout(code,time)中的code只会执行一次,如果要code执行多次用setInterval()或settimeout()递归


    啊啊啊啊12...

    额 我只想说 你有copy我的代码试试我的错误是什么吗

    2016-09-13 11:24:12

    共 1 条回复 >

JS动画效果

通过本课程JS动画的学习,从简单动画开始,逐步深入各种动画框架封装

113924 学习 · 1443 问题

查看课程

相似问题