jQuery动画stop()的用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery动画stop()的用法相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src=”https://code.jquery.com/jquery-1.10.2.js“></script>
<meta charset=‘utf-8‘>
</head>
<body>
<button id="stop">停止动画</button>
<button id="begin">继续动画</button>
<p class="testslide" style="background-color: blue;width:100px;height:400px">
</p>
<script type="text/javascript">
$(function(){
$(‘#begin‘).click(function(){
$(‘.testslide‘).slideUp(3000).animate({height:100},2000);
});
$(‘#stop‘).click(function(){
$(‘.testslide‘).stop();
});
});
</script>
</body>
</html>
以上是关于jQuery动画stop()的用法的主要内容,如果未能解决你的问题,请参考以下文章