jQuery清除停止队列中剩下(未执行的函数)
Posted YoogaChan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery清除停止队列中剩下(未执行的函数)相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery清除、停止队列中剩下(未执行的函数)</title>
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
//clearQueue() 清除、停止队列中剩下(未执行的函数)
$(document).ready(function(){
$("#start").click(function(){ //队列动画
$("div").animate({height:300},1500);
$("div").animate({width:300},1500);
$("div").animate({height:100},1500);
$("div").animate({width:100},1500);
});
$("#stop").click(function(){
$("div").clearQueue();
});
});
</script>
</head>
<body>
<button id="start">开始动画</button>
<button id="stop">停止动画</button>
<br><br>
<div style="background:lightpink;height:100px;width:100px;">
</div>
</body>
</html>
以上是关于jQuery清除停止队列中剩下(未执行的函数)的主要内容,如果未能解决你的问题,请参考以下文章