stop([clearQueue,gotoEnd])方法停止所有指定元素上的所有当前正在运行的动画。
stop( [clearQueue, gotoEnd ]) - 语法
selector.stop( [clearQueue], [gotoEnd] ) ;
这是此方法使用的所有参数的描述-
clearQueue - 这是可选的布尔参数。设置为true会清除动画队列,有效地停止所有排队的动画。
gotoEnd - 这是可选的布尔参数。布尔值(true/false),当设置为true时,会导致当前播放的动画立即完成,包括在show和hide上重置原始样式并调用回调函数。
stop( [clearQueue, gotoEnd ]) - 示例
以下是一个简单的示例,简单说明了此方法的用法-
<html> <head> <title>The jQuery Example</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"> </script> <script type="text/javascript" language="javascript"> $(document).ready(function() { $("#go").click(function(){ $(".target").animate({left: +=100px}, 2000); }); $("#stop").click(function(){ $(".target").stop(); }); $("#back").click(function(){ $(".target").animate({left: -=100px}, 2000); }); }); </script> <style> p {background-color:#bca; width:250px; border:1px solid green;} div{position: absolute; left: 50px; top:300px;} </style> </head> <body> <p>Click on any of the following buttons:</p> <button id="go"> GO</button> <button id="stop"> STOP </button> <button id="back"> BACK </button> <div class="target"> <img src="/jquery/images/jquery.jpg" alt="jQuery" /> </div> </body> </html>
这将产生以下输出-
jQuery 中的 stop( clearQueue, gotoEn - 无涯教程网无涯教程网提供stop([clearQueue,gotoEnd])方法停止所有指定元素上的所有当前正在运行的动画。 stop...https://www.learnfk.com/jquery/effect-stop.html