vote up 3 vote down star
2

Hi,

I want to fade out an element and all its child elements after a delay of a few seconds. but I haven't found a way to specify that an effect should start after a specified time delay.

Thanks in Advance, Don

flag

38% accept rate
Can you give an example of when the children of an element aren't faded with the element? – tvanfosson Oct 30 '08 at 18:31
Sorry, my mistake, I'll update the post – Don Oct 30 '08 at 18:38

6 Answers

vote up 12 vote down check
setTimeout(function() { $('#foo').fadeOut(); }, 5000);

The 5000 is five seconds in milliseconds.

link|flag
1  
Note that this is using Javascript's built-in setTimeout function, nothing jQuery specific. – Chris Marasti-Georg Oct 30 '08 at 18:24
This only partially answers his question, I think. – Jason Bunting Oct 30 '08 at 18:26
If the children are inside the #foo element, they should be faded too... – swilliams Oct 30 '08 at 18:29
Ah, okay - so perhaps the OP is missing something then... – Jason Bunting Oct 30 '08 at 18:31
vote up 12 vote down

i use this pause plugin i just wrote

$.fn.pause = function(duration) {
    $(this).animate({ dummy: 1 }, duration);
    return this;
};

Call it like this :

$("#mainImage").pause(5000).fadeOut();

Note: you don't need a callback.

link|flag
This helps me so much! Thank you :-) – Jesse Jun 4 at 13:22
just watch out if jQuery ever adds a pause() function because there's will probably be better than mine! but its good to abstract away what youre doing like this – Simon Jun 5 at 3:10
can someone explain WHY i dont need a callback? i'm not quite sure why this doesnt return immediately – Simon Sep 11 at 23:52
vote up 1 vote down

You can avoid using setTimeout by using the fadeTo() method, and setting a 5 second delay on that.

$("#hideAfterFiveSeconds").click(function(){
  $(this).fadeTo(5000,1,function(){
    $(this).fadeOut("slow");
  });
});
link|flag
doing this kind of block is very cpu intensive compared to setTimeout. I don't see the advantage. - Why is avoiding the native timer necessary? – redsquare Jan 18 at 1:23
vote up 0 vote down
setTimeout(function() { $('#foo').fadeOut(); }, 5000);

These days this works setTimeout( "$('#foo').fadeOut();", 5000);

Also this may seem hackish but try:

$('#foo').fadeIn(5000, function(){ this.fadeOut(xxx)} );

link|flag
That first one uses the eval() function, which is almost always a bad thing. Read this: javascript.crockford.com/code.html – swilliams Oct 30 '08 at 19:43
vote up 0 vote down

check this out:

http://plugins.jquery.com/project/dAnimate

achieve's what you want within the naitive jQuery animation object ( keeps stop() intact and functional)

link|flag
vote up 0 vote down

I've written a plugin to let you add a delay into the chain.

for example $('#div').fadeOut().delay(5000).fadeIn(); // fade element out, wait 5 seconds, fade element back in.

It doesn't use any animation hacks or excessive callback chaining, just simple clean short code.

http://blindsignals.com/index.php/2009/07/jquery-delay/

link|flag

Your Answer

Get an OpenID
or

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