我有幾個div在我的網站上彼此相鄰顯示,每個都有不同的背景圖像。我創建了一個腳本,以隨機時間間隔更改背景圖像,但腳本同時更改所有圖像....我希望每個人隨機更改,完全獨立於另一個.... I '也喜歡他們消失,但時機是關鍵問題在這裏。jQuery隨機更改背景圖像到幾個div
這是我正在使用的腳本。
jQuery(window).load(function(){
var images = ['images/gallery/gallery2thumb.jpg','images/gallery/gallery3thumb.jpg','images/gallery/gallery4thumb.jpg','images/gallery/gallery5thumb.jpg','images/gallery/gallery6thumb.jpg','images/gallery/gallery7thumb.jpg','images/gallery/gallery8thumb.jpg','images/gallery/gallery9thumb.jpg',];
var i = 0;
var timeoutVar;
function changeBackground() {
clearTimeout(timeoutVar); // just to be sure it will run only once at a time
jQuery('.hexagon-in2.change').css('background-image', function() {
if (i >= images.length) {
i=0;
}
return 'url(' + images[i++] + ')';
});
timeoutVar = setTimeout(changeBackground, (300+Math.floor(Math.random() * 1700)));
}
changeBackground();
});
也看到我的jsfiddle http://jsfiddle.net/QwJfn/2/
我怎樣才能得到每個格在隨機的時間間隔改變背景圖片,但獨立?
這些圖像似乎都在同一時間改變,這是我已經有的問題 –
@SamSkirrow:哥們我已經更新了我的小提琴和代碼在這裏檢查它的演示..我希望它現在有所幫助。謝謝 – maverickosama92