up vote 45 down vote favorite
26
share [g+] share [fb]

I am trying to have an element fade in, then in 5000 ms fade back out again. I know I can do something like:

setTimeout(function(){ $(".notice").fadeOut() }, 5000);

But that will only control the fade out, would I add the above on the callback?

link|improve this question

65% accept rate
i want to ask a quetion but i can't (i am currently blocked from asking here in stackoverflow) my problem is : i had the same effect you are talking about an object that fade out and another fade in then they rechange places all work fine but when i go to another page and comeback again the timing get messed and the two object start to fade in and out in the same time instead of being out in one after the other i know this is not the place to ask but i can't ask any more – Qchmqs Oct 11 '11 at 10:56
feedback

protected by Tim Post Jul 4 '11 at 5:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

6 Answers

up vote 112 down vote accepted

Update: As of jQuery 1.4 you can use the .delay( n ) method. http://api.jquery.com/delay/

$('.notice').fadeIn().delay(2000).fadeOut('slow'); 

You could possibly use the Queue syntax, this might work:

jQuery(function($){ 

var e = $('.notice'); 
e.fadeIn(); 
e.queue(function(){ 
  setTimeout(function(){ 
    e.dequeue(); 
  }, 2000 ); 
}); 
e.fadeOut('fast'); 

}); 

or you could be really ingenious and make a jQuery function to do it.

(function($){ 

  jQuery.fn.idle = function(time)
  { 
      var o = $(this); 
      o.queue(function()
      { 
         setTimeout(function()
         { 
            o.dequeue(); 
         }, time);
      });
  };
})(jQuery);

which would ( in theory , working on memory here ) permit you do to this:

$('.notice').fadeIn().idle(2000).fadeOut('slow'); 
link|improve this answer
1  
I am wondering why you are using the queue when a simple usage of setTimeout will work as well. – SolutionYogi Jul 10 '09 at 17:11
21  
because if you use the queue, its easy to add new events to and reuse the code, and code reuse is a GoodThingâ„¢ – Kent Fredric Jul 11 '09 at 9:28
2  
Note that, as also stated in the jQuery API documentation, delay() should really only be used for things related to the effects queue. If you need a timeout for something else, setTimeout() is still the way to go. – Scytale Aug 16 '10 at 9:24
2  
What do you know! By changing o to i, one can make a blog post without giving Caesar his due. Hey OP, is that really you? – bottlenecked Sep 13 '11 at 15:49
Brilliant +1 Thx – etbal Sep 21 '11 at 9:38
show 1 more comment
feedback

I just figured it out below:

$(".notice")
   .fadeIn( function() 
   {
      setTimeout( function()
      {
         $(".notice").fadeOut("fast");
      }, 2000);
   });

I will keep the post for other users!

link|improve this answer
1  
yes, I think sending a callback is a better solution – Dan Beam Jan 21 '10 at 3:24
this worked great for me, thanks! – pyrony Dec 2 '10 at 0:02
feedback

You can do something like this:

$('.notice')
    .fadeIn()
    .animate({opacity: '+=0'}, 2000)   // Does nothing for 2000ms
    .fadeOut('fast');

Sadly, you can't just do .animate({}, 2000) -- I think this is a bug, and will report it.

link|improve this answer
feedback

Great hack by @strager. Implement it into jQuery like this:

    jQuery.fn.wait = function (MiliSeconds) {
        $(this).animate({ opacity: '+=0' }, MiliSeconds);
        return this;
    }

And then use it as:

$('.notice').fadeIn().wait(2000).fadeOut('slow');

I like it :D

link|improve this answer
feedback

Ben Alman wrote a sweet plugin for jQuery called doTimeout. It has a lot of nice features!

Check it out here: jQuery doTimeout: Like setTimeout, but better.

link|improve this answer
feedback

To be able to use it like that, you need to return this. Without the return, fadeOut('slow'), will not get an object to perform that operation on.

I.e.:

  $.fn.idle = function(time)
  {
      var o = $(this);
      o.queue(function()
      {
         setTimeout(function()
         {
            o.dequeue();
         }, time);
      });
      return this;              //****
  }

Then do this:

$('.notice').fadeIn().idle(2000).fadeOut('slow');
link|improve this answer
feedback

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