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()的用法的主要内容,如果未能解决你的问题,请参考以下文章

jquery stop( ) 的用法 (转)

关于jquery自带动画效果的stop()问题

jquery 实现重复点击一个元素时不重复执行效果

jQuery中停止动画stop

jQuery 停止动画-jQuery stop()

jquery.stop()停止动画