当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery stop()用法及代码示例


stop()方法是一个内置方法jQuery用于停止所选元素当前正在运行的动画。

用法:

$(selector).stop(stopAll, goToEnd);

参数:该方法接受如上所述和如下所述的两个参数:

  • stopAll:它是可选参数,该参数的值为布尔值。此参数用于指定是否也停止排队的动画。该参数的默认值为 false。
  • goToEnd:它是可选参数,该参数的值为布尔值。该参数用于指定是否立即完成所有动画。该参数的默认值为 false。

下面的示例说明了 jQuery 中的 stop() 方法:
示例 1:该示例不包含任何参数。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>The stop Method</title> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
  
    <!-- jQuery code to show the working of this method -->
    <script> 
        $(document).ready(function () { 
            $("#gfg_start").click(function () { 
                $("div").animate({ 
                    height: 300 
                }, 1000); 
                $("div").animate({ 
                    width: 300 
                }, 1000); 
            }); 
            $("#gfg_stop").click(function () { 
                $("div").stop(); 
            }); 
        }); 
    </script> 
    <style> 
        div { 
            background: green; 
            height: 60px; 
            width: 60px; 
        } 
  
        button { 
            margin-bottom: 30px; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- click on this button and  
        animation will start -->
    <button id="gfg_start">Start</button> 
    <!-- click on this button and  
        animation will stop -->
    <button id="gfg_stop">Stop</button> 
    <div></div> 
</body> 
  
</html>

输出:

示例 2:该示例包含参数。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> The stop Method</title> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
  
    <script> 
        $(document).ready(function () { 
            var div = $("div"); 
            $("#start").click(function () { 
                div.animate({ 
                    height: 280 
                }, "slow"); 
                div.animate({ 
                    width: 280 
                }, "slow"); 
                div.animate({ 
                    height: 120 
                }, "slow"); 
                div.animate({ 
                    width: 120 
                }, "slow"); 
            }); 
            $("#stop").click(function () { 
                div.stop(true, true); 
            }); 
        }); 
    </script> 
    <style> 
        div { 
            background: green; 
            height: 100px; 
            width: 100px; 
        } 
  
        button { 
            margin-bottom: 30px; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- click on this button and  
        animation will start -->
    <button id="start">Start </button> 
    <!-- click on this button and  
        animation will stop -->
    <button id="stop">Stop </button> 
    <div></div> 
</body> 
  
</html>

输出:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery stop() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。