Timeout jquery effects - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T07:54:40Z http://stackoverflow.com/feeds/question/316278 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316278/timeout-jquery-effects 4 Timeout jquery effects Coughlin 2008-11-25T03:25:04Z 2009-11-05T18:12:05Z <p>Hey All,</p> <p>I am trying to have an element fade in, then in 5000ms fade back out again. I know I can do something like:</p> <pre><code>setTimeout(function(){ $(".notice").fadeOut() }, 5000); </code></pre> <p>But that will only control the fade out, would i add the above on the callback?</p> <p><strong><em>UPDATE: I posted it here on my blog: <a href="http://www.ryancoughlin.com/2009/01/22/jquery-timeout-function/" rel="nofollow">http://www.ryancoughlin.com/2009/01/22/jquery-timeout-function/</a></em></strong></p> <p><strong>Thanks to everyone for the help on this.</strong></p> http://stackoverflow.com/questions/316278/timeout-jquery-effects/316281#316281 5 Answer by Coughlin for Timeout jquery effects Coughlin 2008-11-25T03:26:20Z 2008-11-25T03:35:34Z <p>I just figured it out below:</p> <pre><code>$(".notice") .fadeIn( function() { setTimeout( function() { $(".notice").fadeOut("fast"); }, 2000); }); </code></pre> <p>I will keep the post for other users! Best of luck.</p> <p>Ryan</p> http://stackoverflow.com/questions/316278/timeout-jquery-effects/316298#316298 3 Answer by strager for Timeout jquery effects strager 2008-11-25T03:36:48Z 2008-11-25T03:36:48Z <p>You can do something like this:</p> <pre><code>$('.notice') .fadeIn() .animate({opacity: '+=0'}, 2000) // Does nothing for 2000ms .fadeOut('fast'); </code></pre> <p>Sadly, you can't just do .animate({}, 2000) -- I think this is a bug, and will report it.</p> http://stackoverflow.com/questions/316278/timeout-jquery-effects/316510#316510 9 Answer by Kent Fredric for Timeout jquery effects Kent Fredric 2008-11-25T06:34:53Z 2008-11-25T06:34:53Z <p>You could possibly use the Queue syntax, this might work: </p> <pre><code>jQuery(function($){ var e = $('.notice'); e.fadeIn(); e.queue(function(){ setTimeout(function(){ e.dequeue(); }, 2000 ); }); e.fadeOut('fast'); }); </code></pre> <p>or you could be really ingenious and make a jQuery function to do it.</p> <pre><code>(function($){ jQuery.fn.idle = function(time) { var o = $(this); o.queue(function() { setTimeout(function() { o.dequeue(); }, time); }); }; })(jQuery); </code></pre> <p>which would ( in theory , working on memory here ) permit you do to this: </p> <pre><code>$('.notice').fadeIn().idle(2000).fadeOut('slow'); </code></pre> http://stackoverflow.com/questions/316278/timeout-jquery-effects/318402#318402 0 Answer by Coughlin for Timeout jquery effects Coughlin 2008-11-25T18:27:01Z 2008-11-25T18:27:01Z <p>Thank you all! I will give the function method a try..that seems neat!</p> <p>Ryan</p> http://stackoverflow.com/questions/316278/timeout-jquery-effects/1110527#1110527 0 Answer by dspinozzi for Timeout jquery effects dspinozzi 2009-07-10T16:17:20Z 2009-07-10T16:17:20Z <p>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</p> <p>i.e.</p> <pre><code> $.fn.idle = function(time) { var o = $(this); o.queue(function() { setTimeout(function() { o.dequeue(); }, time); }); return this; //**** } </code></pre> <p>then can do this</p> <pre><code>$('.notice').fadeIn().idle(2000).fadeOut('slow'); </code></pre>