vote up 1 vote down star
1

I thought it would be simple but I still can't get it to work. By clicking one button, I want several animations to happen - one after the other - but now all the animations are happening at once. Here's my code - can someone please tell me where I'm going wrong?:

$(".button").click(function(){
  $("#header").animate({top: "-50"}, "slow")
  $("#something").animate({height: "hide"}, "slow")
  $("ul#menu").animate({top: "20", left: "0"}, "slow")
  $(".trigger").animate({height: "show", top: "110", left: "0"}, "slow");
});
flag

71% accept rate
The 6.9kb is commented, un-minified and un-gzipped. Prob <1kb in reality – redsquare Aug 2 at 14:12

3 Answers

vote up 2 vote down check

You could do a bunch of callbacks.

$(".button").click(function(){
    $("#header").animate({top: "-50"}, "slow", function() {
        $("#something").animate({height: "hide"}, "slow", function() {
            $("ul#menu").animate({top: "20", left: "0"}, "slow", function() {
                $(".trigger").animate({height: "show", top: "110", left: "0"}, "slow");        
            });
        });
    });
});
link|flag
see above! . – redsquare Aug 2 at 9:19
That worked. Cheers jammus. – lorenzium Aug 2 at 13:53
vote up 1 vote down

Use the queue option:

$(".button").click(function(){
  $("#header").animate({top: "-50"}, { queue: true, duration: "slow" })
  $("#something").animate({height: "hide"}, { queue: true, duration: "slow" })
  $("ul#menu").animate({top: "20", left: "0"}, { queue: true, duration: "slow" })
  $(".trigger").animate({height: "show", top: "110", left: "0"}, { queue: true, duration: "slow" });
});
link|flag
Thanks Garrett, but it didn't work... – lorenzium Aug 2 at 5:35
queue is true by default – redsquare Aug 2 at 8:40
so, what to do? – lorenzium Aug 2 at 8:42
@garrett, did you test that before giving the answer? – redsquare Aug 2 at 9:02
vote up 1 vote down

Queue only works if your animating the same element. Lord knows why the above got voted up but it will not work.

You will need to use the animation callback. You can pass in a function as the last param to the animate function and it will get called after the animation has completed. However if you have multiple nested animations with callbacks the script will get pretty unreadable.

I suggest the following plugin which re-writes the native jQuery animate function and allows you to specify a queue name. All animations that you add with the same queue name will be run sequentially as demonstrated here.

Example script

  $("#1").animate({marginTop: "100px"}, {duration: 100, queue: "global"});
  $("#2").animate({marginTop: "100px"}, {duration: 100, queue: "global"});
  $("#3").animate({marginTop: "100px"}, {duration: 100, queue: "global"});
link|flag
Yep, callbacks were what I was going to suggest. – Matt Sach Aug 2 at 9:10
Thanks redsquare. But since there's not gonna be a whole lot of animations going on I don't think there's a need for a plugin (an extra 6.26kb). I'll keep it in mind for future though. – lorenzium Aug 2 at 13:52

Your Answer

Get an OpenID
or

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