5

考虑拥有以下对象:

<div id="d1"><span>This is div1</span></div>
<div id="d2"><span>This is div2</span></div>
<div id="d3"><span>This is div3</span></div>
<div id="d4"><span>This is div4</span></div>
<div id="clickhere"><span>Start animation</span></div>

并考虑到我想使用 jQuery 在前面列出的四个元素中的每一个上应用一个动画。

我现在拥有的

如果页面,请考虑在 head 部分中应用的以下代码:

function start_anim() {
  $("#d1").animate({top:"-50px"},1000,function(){}); // Animating div1
  $("#d2").animate({top:"-50px"},1000,function(){}); // Animating div2
  $("#d3").animate({top:"-50px"},1000,function(){}); // Animating div3
  $("#d4").animate({top:"-50px"},1000,function(){}); // Animating div4
}
$(document).ready($('#clickhere').click(start_anim));

click触发事件时,此脚本片段将导致四个 div 的同步翻译。

我想拥有什么

但是我想让第一个 div 先移动,然后当第一个 div 的动画达到 50% 时,我想让第二个 div 移动。第三个和最后一个 div 相同。

我怎样才能做到这一点?谢谢

4

1 回答 1

10

就像是:

$("#d1").animate({top:-50}, 1000);
$("#d2").delay(500).animate({top:-50}, 1000);
$("#d3").delay(1000).animate({top:-50}, 1000);
$("#d4").delay(1500).animate({top:-50}, 1000);

甚至更好:

var duration = 1000;

$('#d1,#d2,#d3,#d4').each(function(i) {
   $(this).delay( i*(duration/2) ).animate({top:-50}, duration);
});
于 2013-10-20T14:13:58.720 回答