gpt4 book ai didi

jquery - 每 1 秒重复一次每个循环

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

对于下面的代码,如何在悬停时每 1 秒重复一次循环?那么当鼠标悬停在 prevbutton 上时,每个循环每 1 秒运行一次?

$('.prevbutton').hover(function() {
container.animate({'scrollLeft': '-'+scroll}, 5000);

$('.parent-container').each(function() {


});

}, function(){
container.stop();
});

最佳答案

试试这个

$('.prevbutton').hover(function() {
container.animate({'scrollLeft': '-'+scroll}, 5000);
var intervalId = setInterval(function() {
$('.parent-container').each(function() {

});
}, 1000);
$(this).data('intervalId', intervalId);
}, function(){
container.stop();
clearInterval($(this).data('intervalId'));
});

关于jquery - 每 1 秒重复一次每个循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8897400/

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