I am trying to make a sequential animation, where a loop iterates through a list of elements .post
's and fades them in slow. The difficult part is having it so that the next iteration begins fading in before the last one has finished fading. All I have so far is a simple sequential animator that fades them in one after the other.
$(".post").hide();
var posts = $(".post"),
i = 0;
(function() {
$(posts[i++]).fadeIn('slow', arguments.callee);
})();
Does anyone know how I could change this to allow .post
to fadeIn() before the previous elem/s have finished?