Is there any way to fadeout a div after 5 Seconds without using a setTimeOut function?
|
|
|||||||
|
|
|
How about the fadeOut() function. Would look something like this:
|
||||
|
|
|
Case 1: if you want to start fadeOut after 5 seconds, use this:
Then, use it like this:
You can't achieve this without using setTimeOut at all Case 2: if you want the duration of fadeOut to be 5 seconds, use this:
|
|||
|
|
|
|
Not sure if you want it to take 5 seconds or start in 5 seconds. For it to take 5 seconds: The jQuery fadeout function can be used on a div, and it will reduce the element's opacity until it is 0 and then display none the div. The speed of the fade is a parameter for the function. http://docs.jquery.com/Effects/fadeOut#speedcallback To start it in 5 seconds, you'll need some sort of timer that starts when the document or window is ready, or when the div is ready depending on what you want. |
||
|
|
|
|
// i use this pause plugin i just wrote
Call it like this :
Note: you don't need a callback. |
||||
|
|
|
Assuming you mean 'wait five seconds and then fade out', I think you'll have to use a plugin to force the delay, eg this one |
||
|
|
|
|
hi, im new to jquery and want to do the same.. i notice your answers here but does anyone know how to actually put that in your pages, e.g. where each line goes inthe js or html files? thanks Emma |
||
|
