为了账号安全,请及时绑定邮箱和手机立即绑定

从第二个小球开始,速度依次变快是什么情况?

<!-- callback.html -->

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style type="text/css">

.ball{

height: 100px;

width: 100px;

border-radius: 50%;

margin-left: 0;

}

.ball1{

background: red;

}

.ball2{

background: yellow;

}

.ball3{

background: blue;

}

</style>

</head>

<body>

<div class="ball ball1" style="margin-left: 0px"></div>

<div class="ball ball2" style="margin-left: 0px"></div>

<div class="ball ball3" style="margin-left: 0px"></div>

<script type="text/javascript">

// var ball=document.getElementsByClassName("ball");

// var ball1=ball[0];

// var ball2=ball[1];

// var ball3=ball[2];

var ball1=document.querySelector(".ball1");

var ball2=document.querySelector(".ball2");

var ball3=document.querySelector(".ball3");

function animate(ball,distance,callback) {

setTimeout(function(){

var marginLeft=parseInt(ball.style.marginLeft, 10);

if (marginLeft===distance) {

callback&&callback();

}else if(marginLeft<distance){

marginLeft++;

}else{marginLeft--};

ball.style.marginLeft=marginLeft+"px";

animate(ball, distance, callback);



},13)

}

animate(ball1,400,function(){

animate(ball2,400,function(){

animate(ball3,400,function(){

animate(ball1,100,function(){

animate(ball2,200,function(){

animate(ball3,300,function(){

//

})

})

})

})

})

})

</script>

</body>

</html>


正在回答

2 回答

啊……帮你看了之后发现你自己解决了……不过我没太懂你这句“不然setTimeout会叠加的”是什么意思。麻烦您再细致讲一下可以不

0 回复 有任何疑惑可以回复我~

原来递归停止的条件是在第一个else里面,只要marginLeft相等了,就会停止递归了,不然setTimeout会叠加的。

0 回复 有任何疑惑可以回复我~
#1

weibo_烟梦江南_03879528

不return吗?不return会一直递归
2017-07-04 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
进击Node.js基础(二)
  • 参与学习       76755    人
  • 解答问题       226    个

本教程带你攻破 Nodejs,让 JavaScript流畅运行在服务器端

进入课程

从第二个小球开始,速度依次变快是什么情况?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信