我想向上移动对象,延迟 1000 毫秒,然后隐藏它,
我得到了代码:
$("#test").animate({"top":"-=80px"},1500)
.animate({"top":"-=0px"},1000)
.animate({"opacity":"0"},500);
我用 ".animate({"top":"-=0px"},1000)" 来实现延迟,这不好。
我想:
$("#test").animate({"top":"-=80px"},1500)
.sleep(1000)
.animate({"opacity":"0"},500);
任何的想法?