gpt4 book ai didi

jquery - 需要jquery闪烁文本只闪烁8秒,然后停止

转载 作者:行者123 更新时间:2023-12-01 02:33:18 26 4
gpt4 key购买 nike

我需要在 8 秒后停止闪烁文本。除了能够在 8 秒后停止之外,一切都运行良好。我是新手,需要帮助...

这是我正在使用的代码,请提供建议或添加到此代码中,以便在 8 秒后停止:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.1.min.js"></script>

<div id="msg"> <strong><font color="red">text example</font></strong></p> </div>

<script type="text/javascript" >
function blink(selector){
$(selector).fadeOut('slow', function(){
$(this).fadeIn('slow', function(){
blink(this);
});
});
}

blink('#msg');
</script>

谢谢

最佳答案

您可以尝试在代码中添加这样的内容:

var stopBlinking = false;
setTimeout(function()
{
stopBlinking = true;
}, 8000);

function blink(selector) {
$(selector).fadeOut('slow', function() {
$(this).fadeIn('slow', function() {
if (!stopBlinking)
{
blink(this);
}
else
{
$(this).hide();
}
});
});
}

看例子here

关于jquery - 需要jquery闪烁文本只闪烁8秒,然后停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10812473/

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