我已经创建了 3 个球,我想运行一个循环,通过执行以下操作为它们设置动画:
- 随机放置它们
- 给他们一个起点
- 给他们一段时间
这是小提琴链接:http: //jsfiddle.net/X3SVp/1/
Javascript
function flipper(){
$('#ball_1').animate({
"left": '-90',
}, function(){
$('#ball_1').animate({
"left": '200',
}, flipper());
});
}
flipper();
HTML
<div id="ball_1">
</div>
<div id="ball_2">
</div>
<div id="ball_3">
</div>
CSS
#ball_1{
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #354390;
left: 200px;
position: absolute;
}
#ball_2{
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #354390;
}
#ball_3{
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #354390;
}