jquery自定义动画
程序员文章站
2022-03-17 12:57:38
...
- delay(time)------延迟time后开始执行
- stop()--------------停止当前动画直接进入下一个动画
<div class="block"></div>
<button id="start">开始</button>
<button id="stop">暂停</button>
$(".start").click(function(){
$(".block").delay(1000).animate({
marginLeft:"400px",
opacity:0.1
},1000,function(){
alert(1)
}).delay(1000).animate({
marginLeft:"0px",
opacity:1
})
});
$("#stop").click(function(){
$(".block").stop()
})
下一篇: Unity发布WebGL爬坑杂记(六)