带有延迟的奇怪循环行为(jQuery)
我在 jQuery 中构建了一个简单的循环,但“价格”随机弹出。 我认为延迟有一些问题,但我希望它能持续 4-5 秒。
setInterval(function(){loop()}, 16000);
function loop(){
$('.popup').fadeIn('1000');
$('.twitchad').animate({
left: "-100px"
}, 1500, function() {
$('.price').show().animate({
left: 50
}).delay('4000').fadeOut("slow");
$('.popup').delay('5000').fadeOut("slow");
});
}
I build a simple Loop in jQuery but the "price" pops up randomly.
I think there's some trouble with the delays but i want it to stay for like 4-5 seconds.
setInterval(function(){loop()}, 16000);
function loop(){
$('.popup').fadeIn('1000');
$('.twitchad').animate({
left: "-100px"
}, 1500, function() {
$('.price').show().animate({
left: 50
}).delay('4000').fadeOut("slow");
$('.popup').delay('5000').fadeOut("slow");
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果添加计数,您可以更好地看到发生的情况:
在控制台中,我看到以下内容。
它正在以适当的周期循环并触发所有内容,但我怀疑在第一次运行后,它并没有处于您期望的确切状态。目前尚不清楚您的期望是什么,也不清楚您从帖子中看到了什么错误。希望这可以帮助您实现这一目标。如果没有,请使用可能有助于解释的详细信息或屏幕截图更新您的帖子。
If you add a count, you can see better whats happening:
In console, I see the following.
It is looping and triggering everything in a proper cycle, yet I suspect after the first run, it is not in the exact state you expect. It's not clear what you were expecting or what you see that is wrong from your post. Hopefully this help you get there. If not, update your post with details or screen shots that might help explain.