我正在使用此代码为 3 个 div 设置动画,如何添加延迟以使动画逐步发生。现在 3 个 div 会同时设置动画。请帮我。
这是我的代码: $(document).ready(function() {
//iPhone Animation / Define Variable
var iPhoneOne = $(".iphoneOne");
var iPhoneTwo = $(".iphoneTwo");
var free = $(".free");
iPhoneOne.animate({marginTop:'80px',opacity:1},{duration:"slow", easing:"easeOutBounce"});
iPhoneTwo.animate({marginTop:'80px',opacity:1},{duration:"slow", easing:"easeOutBounce"});
free.show("fast");
});