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?
feedback
|
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.
|
Update: As of jQuery 1.4 you can use the
You could possibly use the Queue syntax, this might work:
or you could be really ingenious and make a jQuery function to do it.
which would ( in theory , working on memory here ) permit you do to this:
| |||||||||||||||||||
feedback
|
|
I just figured it out below:
I will keep the post for other users! | |||||||
feedback
|
|
You can do something like this:
Sadly, you can't just do .animate({}, 2000) -- I think this is a bug, and will report it. | |||
|
feedback
|
|
Great hack by @strager. Implement it into jQuery like this:
And then use it as:
I like it :D | ||||
|
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. | ||||
|
feedback
|
|
To be able to use it like that, you need to return I.e.:
Then do this:
| ||||
|
feedback
|