gpt4 book ai didi

javascript - 如何在 JavaScript/jQuery 中跳过 setTimeout

转载 作者:行者123 更新时间:2023-11-27 23:59:35 24 4
gpt4 key购买 nike

我有一个脚本应该每 8 秒调用另一个 JavaScript 函数。但是,在某些情况下,我需要跳过负责 8 秒延迟的 setTimeout 函数(它是一个 slider ,根据用户单击的内容,我需要向右转到特定的幻灯片)离开)。这在 JavaScript 中可能吗?

例如,根据用户点击的内容,我可能想立即执行 switchBullets(4); switchNews("Title 4", "image4.jpg", "image4Logo.jpg", ""),无论动画此时位于何处。

脚本如下所示:

function animateNews() {
$(window).load(function() {

switchBullets(1);
switchNews("Title 1", "image1.jpg", "image1Logo.jpg", "");
setTimeout(function() { switchBullets(2); switchNews("Title 2", "image2.jpg", "image2Logo.jpg", "")
setTimeout(function() { switchBullets(3); switchNews("Title 3", "image3.jpg", "image3Logo.jpg", "")
setTimeout(function() { switchBullets(4); switchNews("Title 4", "image4.jpg", "image4Logo.jpg", "")
setTimeout(function() { animateNews();
}, 8000);
}, 8000);
}, 8000);
}, 8000);
}
)};

最佳答案

将数据与逻辑分开。使用 setInterval() 来使其永远运行。当用户点击时,调用click(),setInterval将被取消。

var timerId;
var data = [
{title: 'Title 2', img1: 'image2', img2: 'image2Logo.jpg', other: ''},
{title: 'Title 3', img1: 'image3', img2: 'image3Logo.jpg', other: ''},
{title: 'Title 4', img1: 'image4', img2: 'image4Logo.jpg', other: ''}
];
$(window).load(function() {
switchBullets(2);
switchNews("Title 2", "image2.jpg", "image2Logo.jpg", "");
timerId = beginSlider();
});

function beginSlider() {
var i = 1;
return setInterval(function () {
switchBullets(i+2);
switchNews(data[i].title, data[i].img1, data[i].img2, data[i].other);
if (i === 2) { i = 0; }
else { i += 1; }
}, 8000);
}
function click(j) {
clearInterval(timerId);
switchBullets(j+2);
switchNews(data[j].title, data[j].img1, data[j].img2, data[j].other);
// could start slider again after 8 sec.
// timerId = beginSlider();
}

关于javascript - 如何在 JavaScript/jQuery 中跳过 setTimeout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31934421/

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