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
|
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
|
||||
|
|
|
The 5000 is five seconds in milliseconds. |
||||||||||
|
|
|
i use this pause plugin i just wrote
Call it like this :
Note: you don't need a callback. |
||||||
|
|
|
You can avoid using setTimeout by using the fadeTo() method, and setting a 5 second delay on that.
|
||
|
|
|
These days this works Also this may seem hackish but try:
|
|||
|
|
|
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) |
||
|
|
|
|
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. |
||
|
|