vote up 1 vote down star

Is there any way to fadeout a div after 5 Seconds without using a setTimeOut function?

flag

Do you want the animation to take 5 seconds or do you want to wait 5 seconds before the animation starts? – Adam Bellaire Feb 11 at 12:14
Yes i want to wait 5 seconds before the animation starts. It's solved, I wrote function a $("div").fadeOut(10000); then it is working as what i want to do exactly! – john Feb 13 at 12:06
Thank's to all stack overflow users for giving me related answers for my question! – john Feb 13 at 12:09

6 Answers

vote up 9 vote down check

How about the fadeOut() function. Would look something like this:

$("#myDiv").fadeOut(5000);
link|flag
This doesn't really answer the question. He wants to fade after 5 seconds, not have the fade last for 5 seconds. – James Burgess Feb 16 at 11:38
i want to wait 5 seconds before the animation starts. It's solved, I wrote function as $("div").fadeOut(10000); then it is working as what i want to do exactly with out using setTimeOut() function. Thank you! – john Feb 18 at 4:38
vote up 7 vote down

Case 1: if you want to start fadeOut after 5 seconds, use this:

jQuery.fn.delay = function(time,func){
    return this.each(function(){
    	setTimeout(func,time);
    });
};

Then, use it like this:

$('#div').delay(5000, function(){$(#div').fadeOut()})

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:

$('#div').fadeOut(5000)
link|flag
vote up 1 vote down

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.

link|flag
vote up 1 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
for some reason pause(5000).css("opacity", .5) doesn't pause before setting the opacity, but it works for fadeout. anyone care to explain? note: when i said 'plugin i just wrote' i was trying to indicate 'not fully tested' - but it should work for what was asked for – Simon Feb 16 at 11:43
css() doesn't use the animation queue. if you want to pause before changing opacity you'd need something like "pause(5000).animate({ 'opacity': 0.5 }); – mishac Apr 9 at 12:21
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
write the code in $(document).ready(function(){ // code here }); – john Oct 2 at 12:23

Your Answer

Get an OpenID
or

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