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


JQuery finish()用法及代码示例


finish()是 jQuery 中的一个内置方法,用于停止当前正在运行的动画。
用法:

$(selector).finish();

参数:它不接受任何参数。
返回值:它返回所选元素及其最终值。

显示 finish() 方法工作原理的 jQuery 代码:


<html> 
   
<head> 
    <script 
    src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
    <script> 
        <!-- jQuery code to show the working of this method -->
        $(document).ready(function() { 
            $("#b1").click(function() { 
                $("div").animate({ 
                    height: 200 
                }, 4000); 
                $("div").animate({ 
                    width: 200 
                }, 4000); 
            }); 
            $("#b2").click(function() { 
                $("div").finish(); 
            }); 
        }); 
    </script> 
    <style> 
        div { 
            background: green; 
            height: 100px; 
            width: 100px; 
            padding: 30px; 
        } 
    </style> 
</head> 
   
<body> 
   
    <div></div> 
   
    <p> 
        <!-- this button will start the animation -->
        <button id="b1">Start </button> 
        <!-- this button will finish the animation -->
        <button id="b2">Stop</button> 
    </p> 
   
</body> 
   
</html> 

输出:
在点击“Start”按钮之前-

单击开始按钮后,动画将以指定的速度开始,当单击停止按钮时,它会立即完成动画并将元素返回到其最终的高度和宽度值。



相关用法


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