我有用jQuery構建的圖像滑塊。它被設置爲以7000毫秒的間隔滑動圖像。看起來,有時並且有時候,滑塊將以超高速度滑動圖像(滑塊之間的間隔約爲1秒)。我無法確定原因。請幫忙!jQuery setInterval()的問題?
鏈接到的網站與滑塊:http://healthyhometech.com
function slider() {
$(".paging").hide();
$(".paging a:first").addClass("active");
var imageWidth = $(".window").width();
var imageSum = $(".image_reel img").size();
var imageReelWidth = imageWidth * imageSum;
$(".image_reel").css({'width' : imageReelWidth});
rotate = function(){
var triggerID = $active.attr("rel") - 1;
var image_reelPosition = triggerID * imageWidth;
$(".paging a").removeClass('active');
$active.addClass('active');
$(".image_reel").animate({
left: -image_reelPosition
}, 500);
};
rotateSwitch = function(){
play = setInterval(function(){
$active = $('.paging a.active').next();
if ($active.length === 0) {
$active = $('.paging a:first');
}
rotate();
}, 7000); //Timer speed
};
rotateSwitch();
$(".image_reel a").hover(function() {
clearInterval(play);
}, function() {
rotateSwitch();
});
};
我還沒有看到這個錯誤呢,你能描述它何時發生?你做什麼? – OptimusCrime