Timeout jquery effects - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T07:54:40Zhttp://stackoverflow.com/feeds/question/316278http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316278/timeout-jquery-effects4Timeout jquery effectsCoughlin2008-11-25T03:25:04Z2009-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#3162815Answer by Coughlin for Timeout jquery effectsCoughlin2008-11-25T03:26:20Z2008-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#3162983Answer by strager for Timeout jquery effectsstrager2008-11-25T03:36:48Z2008-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#3165109Answer by Kent Fredric for Timeout jquery effectsKent Fredric2008-11-25T06:34:53Z2008-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#3184020Answer by Coughlin for Timeout jquery effectsCoughlin2008-11-25T18:27:01Z2008-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#11105270Answer by dspinozzi for Timeout jquery effectsdspinozzi2009-07-10T16:17:20Z2009-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>