up vote 4 down vote favorite
3
share [g+] share [fb]

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");
});
link|improve this question

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

5 Answers

up vote 5 down vote accepted

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|improve this answer
see above! . – redsquare Aug 2 '09 at 9:19
That worked. Cheers jammus. – lorenzium Aug 2 '09 at 13:53
I had a similar issue on my website, and I've since thought of using the callbacks, but it seems slightly inelegent to do so. it'd be nice if you could somehow do it with jquery chaining. at the moment I do it using the delay function : animate the first thing. delay the second thing by the same amount of time I'm animating the first thing, then animate it.. and so on. – MrVimes Aug 14 '11 at 20:40
feedback

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|improve this answer
Yep, callbacks were what I was going to suggest. – Matt Sach Aug 2 '09 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 '09 at 13:52
thanks for the info @redsquare. :) – Shripad K Nov 17 '11 at 11:20
both links seem broken, could you check them please @redsquare? – Shawn Dec 5 '11 at 20:17
feedback

You can also put your effects into the same queue, i.e. the queue of the BODY element.

$('.images IMG').ready(
   function(){
        $('BODY').queue(
            function(){
                $('.images').fadeTo('normal',1,function(){$('BODY').dequeue()});
            }
        );
    }
);

Make sure you call dequeue() within the last effect callback.

link|improve this answer
feedback

This has already been answered well (I think jammus's answer is the best) but I thought I'd provide another option based on how I do this on my website, using the delay() function...

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

(replace 1000 with your desired animation speed. the idea is your delay function delays by that amount and accumulates the delay in each element's animation, so if your animations were each 500 miliseconds your delay values would be 500, 1000, 1500)

edit: FYI jquery's 'slow' speed is also 600miliseconds. so if you wanted to use 'slow' still in your animations just use these values in each subsequent call to the delay function - 600, 1200, 1800

link|improve this answer
feedback

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|improve this answer
Thanks Garrett, but it didn't work... – lorenzium Aug 2 '09 at 5:35
queue is true by default – redsquare Aug 2 '09 at 8:40
so, what to do? – lorenzium Aug 2 '09 at 8:42
@garrett, did you test that before giving the answer? – redsquare Aug 2 '09 at 9:02
queueing only works when animating the same element. – MrVimes Aug 14 '11 at 20:38
feedback

Your Answer

 
or
required, but never shown

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