vote up 4 vote down star
6

Hey All,

I am trying to have an element fade in, then in 5000ms 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?

UPDATE: I posted it here on my blog: http://www.ryancoughlin.com/2009/01/22/jquery-timeout-function/

Thanks to everyone for the help on this.

flag

68% accept rate

5 Answers

vote up 9 vote down check

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|flag
I am wondering why you are using the queue when a simple usage of setTimeout will work as well. – SolutionYogi Jul 10 at 17:11
1  
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 at 9:28
vote up 0 vote down

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 can do this

$('.notice').fadeIn().idle(2000).fadeOut('slow');
link|flag
vote up 0 vote down

Thank you all! I will give the function method a try..that seems neat!

Ryan

link|flag
When commenting on other people's solutions, use the comment-functionality. Don't post comments as answers. – Jonathan Sampson Jul 10 at 16:20
vote up 3 vote down

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|flag
vote up 5 vote down

I just figured it out below:

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

I will keep the post for other users! Best of luck.

Ryan

link|flag

Your Answer

Get an OpenID
or

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