gpt4 book ai didi

javascript - foreach延迟淡入jquery

转载 作者:行者123 更新时间:2023-11-28 20:02:44 24 4
gpt4 key购买 nike

我正在尝试使用 jquery 延迟每个 div 的 css 淡入。我需要元素一个接一个地淡入。目前,它们只是同时淡入。

这是我的 jquery:

$(".service").each(function(i, el) {
var el = $(el);
if (el.visible(true)) {
$(this).delay(800*i, function(){
el.addClass("animated fadeInDown");
});
}
});

请帮忙。

最佳答案

使用setTimeout:

$(".service").each(function (i, el) {
var el = $(el);
if (el.visible(true)) {
setTimeout(function () {
el.addClass("animated fadeInDown");
}, 800 * i);
}
});

关于javascript - foreach延迟淡入jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21382729/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com