3
以下のコードでは、ホバー上で各ループを1秒ごとにどのように繰り返すのですか?したがって、マウスがprevbutton
を超えると、各ループは1秒ごとに実行されますか?1秒ごとに各ループを繰り返す
$('.prevbutton').hover(function() {
container.animate({'scrollLeft': '-'+scroll}, 5000);
$('.parent-container').each(function() {
});
}, function(){
container.stop();
});