當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。