我試圖幫助一位朋友,他的主頁上有一個旋轉窗格,圖片不會在無限循環上滾動。他們滾動瀏覽,然後回滾到開頭,然後重新開始。如何讓這個'滑塊'的JavaScript無限旋轉圖像?
這裏是JavaScript片段,他提供的:
$(function() {
if ($('#customScroller').length != 0) { //check if we're on the right page
var width = $('#slider a').length;
$('#slider').width(width * 930); //give the slider the appropriate width
var count = 0;
initial slide position
function slide() {
if (count < (width - 1)) { //we want to check if at end of the slider
count++;
}
else {
count = 0;
}
var toMove = 0;
toMove = (-1 * (count * 930));
$('#slider').animate({
left: toMove
}, 1000, function() {
//complete
});
}
var s = window.setInterval(slide, 8500);
}
});
多少工作是把它簡單地循環轉換無限?
編輯:這裏是網站:http://www.ralphshardwood.com
把它放在一個循環,並當它刷爆重置計數器。 – 2012-03-30 14:45:32