如何使用setTimeout延迟此事件(文本滑入框架)?
//fadeIn active slide
$($containerClass+' .swiper-slide:nth-child('+ (currentSlide + 1) +')').find('.content').children().each(function(i){
$(this).delay(i*90).animate({
'opacity' : 1,
'padding-top' : 0
},{ duration: 400, easing: 'easeOutQuad'});
});
答案 0 :(得分:0)
我无法重新创建您的确切场景,所以我创建了一个jsfiddle,做我认为你要求的。
小提琴中使用的Javascript:
// Iterate over slides
$.each($(".slide"), function (i, o) {
// settimeout
setTimeout(function () {
$(o).animate({
left: "+=420"
}, 400, function () {
// Do something
});
}, i * 1000); // Increment the wait
});