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


JQuery finish()用法及代码示例


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

$(selector).finish();

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

jQuery代码显示finish()方法的用法方式:


<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() with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。