Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a group of fade out animations, after which I want to run a group of animation calls.

How can I make sure one is run after the other?

If I do this:

$(div1).fadeOut(600);
$(div2).fadeOut(600);
$(div3).fadeOut(600);

$(div4).animation({opacity:1},600);
$(div5).animation({opacity:1},600);
$(div6).animation({opacity:1},600);

The animations run in parallel.

The above code is just a simplification/abstraction of the problem. I can't group all the calls in one function, and in real life there is a variable number of elements, each managed by it's own class.

share|improve this question

2 Answers

up vote 6 down vote accepted

You can use jQuery deferred objects:

var deferred = [
    new $.Deferred(),
    new $.Deferred(),
    new $.Deferred()
];

$(div1, div2, div3).each(function(i, elem) {
    $(elem).fadeOut(600, function() { deferred[i].resolve(); });
});

$.when(deferred[0], deferred[1], deferred[2]).done(function() {
    $(div4, div5, div6).each(function(i, elem) {
        $(elem).animation({ opacity : 1 }, 600);
    });
});

As @Felix pointed out in the comments, a cleaner syntax for the $.when would look like this:

$.when.apply(null, deferred).done(function() {
    $(div4, div5, div6).each(function(i, elem) {
        $(elem).animation({ opacity : 1 }, 600);
    });
});
share|improve this answer
I think you meant two and three on those two lines with one – Explosion Pills Jul 16 '11 at 15:07
@tandu, yep. Typo fixed. – Stephen Jul 16 '11 at 15:11
You can also write $.when.apply($, deferred).done(.... This could be a nice plugin... – Felix Kling Jul 16 '11 at 15:22
@Felix lol. I started to type that very thing, and then thought "Hmm... might be too confusing for a beginner" and went with an argument list instead. – Stephen Jul 16 '11 at 15:24
@Stephen: :)... – Felix Kling Jul 16 '11 at 15:24
show 7 more comments

If you are using jQuery 1.6+, deferred.pipe() can simplify the code:

$.Deferred(function (dfr) {
  dfr
  .pipe(function () { return $(div1).fadeOut(600); })
  .pipe(function () { return $(div2).fadeOut(600); })
  .pipe(function () { return $(div3).fadeOut(600); })
}).resolve();

Ref: http://blog.darkthread.net/post-2011-08-03-deferred-pipe-animation.aspx

share|improve this answer
Very clean solution! – Just a guy Aug 11 '11 at 17:55
clear solution..and thanks for the reference. – Ajax3.14 Jun 28 '12 at 17:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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