gpt4 book ai didi

javascript - jQuery循环显示div 2秒然后隐藏4秒

转载 作者:行者123 更新时间:2023-12-03 04:06:05 25 4
gpt4 key购买 nike

如何无限循环地显示一个div 2秒然后隐藏它4秒?我使用 jQuery 的 animate()函数,因为我也想使用 CSS 过渡。

function animatedText() {
setTimeout(function() {
$('.text').animate({ opacity: 1 }, 200, function() {
setTimeout(function() {
$('.text').animate({ opacity: 0 }, 200);
}, 1800);
});
}, 3800);
}
setInterval(animatedText(), 6000);

这是我的 fiddle :https://jsfiddle.net/od6gm8t3/

最佳答案

希望这对您有帮助。请检查下面的代码。

function animatedText() {
$('.text').animate({ opacity: 1 }, 200, function() {
setTimeout(function() {
$('.text').animate({ opacity: 0 }, 200);
}, 2000);
});
setTimeout(function() {
animatedText();
},6000);
}
animatedText();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<i class="text">Animated Text</i>

关于javascript - jQuery循环显示div 2秒然后隐藏4秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44550270/

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