Jquery: how to sleep or delay?
Posted
by lazyanno
on Stack Overflow
See other posts from Stack Overflow
or by lazyanno
Published on 2010-05-30T19:30:05Z
Indexed on
2010/05/30
19:42 UTC
Read the original article
Hit count: 159
JavaScript
|jQuery
i want move up the object, delay 1000ms , then hide it,
i get the code:
$("#test").animate({"top":"-=80px"},1500)
.animate({"top":"-=0px"},1000)
.animate({"opacity":"0"},500);
i use ".animate({"top":"-=0px"},1000)" to implement delay, it's not good.
i want:
$("#test").animate({"top":"-=80px"},1500)
.sleep(1000)
.animate({"opacity":"0"},500);
any idea? thanks! :)
© Stack Overflow or respective owner