Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I delay animation with jQuery?

I need to get a navigation to expand the width, and then expand the height, and then reversed for the reverse animation.

Code:

$(function() {
    $("#nav li").not("#logo, #nav li ul li").hover(function(){
        $(this).animate({width:"200px"},{queue:false,duration:1000});
    }, function(){
        $(this).animate({width:"30px"},{queue:false,duration:1000});
    });


    $("#nav li.parent").hover(function(){
        $(this).children("ul").animate({height:"40px"},{queue:false,duration:500});
    }, function(){
        $(this).children("ul").animate({height:"0px"},{queue:false,duration:500});
    });
});
share|improve this question

2 Answers

up vote 5 down vote accepted

use the jQuery .delay(N) methods, where N is the milliseconds to delay.

jsFiddle example

share|improve this answer
1  
I'm assuming your jsFiddle will clear this up, but where exactly does that bit of code go? I'm very new to jQuery so sorry about the noob questions – Rev Aug 8 '11 at 18:23
That goes between animations, I've added the jsFiddle, feel free to take a look. – Madara Uchiha Aug 8 '11 at 18:25
Ahh, I see, but what about if I want it to be on two different hover states, like in my code example? – Rev Aug 8 '11 at 18:29
.delay(N) delays the execution of the script, you can put it anywhere, (before you start animating the reverse animation for example, or after you animate the normal one). – Madara Uchiha Aug 8 '11 at 18:32
I can't seem to get it to work, would you mind putting a simple example up on JSFiddle? – Rev Aug 8 '11 at 18:41
show 2 more comments

Here is the call you are looking for http://api.jquery.com/delay/

.delay(n) // where n is the millis of delay

use is as follows

$.animate(action1).delay(n).animate(action2)
// this code puts the delay bewtween two different animations
share|improve this answer

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.