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”按鈕之前-
單擊開始按鈕後,動畫將以指定的速度開始,當單擊停止按鈕時,它會立即完成動畫並將元素返回到其最終的高度和寬度值。
相關用法
- JQuery finish()用法及代碼示例
- JQuery find()用法及代碼示例
- JQuery filter()用法及代碼示例
- JQuery first()用法及代碼示例
- JQuery fadeOut()用法及代碼示例
- JQuery fadeIn()用法及代碼示例
- JQuery fadeTo()用法及代碼示例
- JQuery focus()用法及代碼示例
- JQuery focusin()用法及代碼示例
- JQuery fadeToggle()用法及代碼示例
- JQuery focusout()用法及代碼示例
- JQuery andSelf()用法及代碼示例
- JQuery change()用法及代碼示例
- JQuery each()用法及代碼示例
- JQuery end()用法及代碼示例
- JQuery height()用法及代碼示例
- JQuery innerHeight()用法及代碼示例
- JQuery keydown()用法及代碼示例
- JQuery keypress()用法及代碼示例
- JQuery next()用法及代碼示例
- JQuery nextAll()用法及代碼示例
- JQuery parent()用法及代碼示例
- JQuery parents()用法及代碼示例
- JQuery prev()用法及代碼示例
- JQuery prevAll()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery finish() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。