I have noticed a behaviour that I can't explain. I'm sure it must be my limited knowledge of JQuery/JavaScript.

When I run the following code on my webpage, everything works as expected - the background image rotates:

//background image rotator
var imgArr = new Array('/images/1.jpg', '/images/2.jpg', '/images/3.jpg');
var preloadArr = new Array();
var i;

/* preload images */
for (i = 0; i < imgArr.length; i++) {
    preloadArr[i] = new Image();
    preloadArr[i].src = imgArr[i];
}

var currImg = 1;
var intID = setInterval(changeImg, 5000);

function changeImg() {
    $('#homeDiv').css({ 'background': 'url(' +  preloadArr[currImg++ % preloadArr.length].src + ')' });
}

However, if I replace the .css() function with .animate(), like in the following code, the currImg++ seems to increment by 2 and an incorrect image loads.

//background image rotator
var imgArr = new Array('/images/1.jpg', '/images/2.jpg', '/images/3.jpg');
var preloadArr = new Array();
var i;

/* preload images */
for (i = 0; i < imgArr.length; i++) {
    preloadArr[i] = new Image();
    preloadArr[i].src = imgArr[i];
}

var currImg = 1;
var intID = setInterval(changeImg, 5000);

function changeImg() {
    $('#homeDiv').animate({ 'background': 'url(' +  preloadArr[currImg++ % preloadArr.length].src + ')' }, 1000);
}

Is it due to the setInterval process getting 'out of sync' due to the animate() function taking 1000ms?

Thanks

Alex

link|improve this question
feedback

migrated from webmasters.stackexchange.com Jan 10 at 10:54

This question came from our site for pro webmasters.

1 Answer

up vote 0 down vote accepted

Remove the setInterval and write code like this

function changeImg() {
$('#homeDiv').delay(5000).animate({ 'background': 'url(' +  preloadArr[currImg++ % preloadArr.length].src + ')' }, 1000, function() { changeImg();} );
}

Like you said, setInterval gets asynchronous with animate function. Here chaneImg runs itself again as callback function everytime it's done executing itself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.