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


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