jQuerydelay()方法是一個內置函數,用於設置計時器以延遲隊列中下一個項目的執行。
用法:
$(selector).delay(para1, para2);
參數:
它接受下麵指定的兩個參數:
- 第 1 段:它指定延遲的速度。
- 第2段:它是可選的,指定隊列的名稱。
返回值:
它以指定的速度返回選定的元素。
示例 1:在此示例中,使用delay()方法將計時器設置到所有塊。
HTML
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to demonstrate delay method -->
<script>
$(document).ready(function () {
$("button").click(function () {
$("#d1").delay("slow").fadeIn();
$("#d2").delay("fast").fadeIn();
$("#d3").delay(1000).fadeIn();
$("#d4").delay(4000).fadeIn();
});
});
</script>
</head>
<body>
<!-- Click on this button -->
<button>Click Me!</button>
<br><br>
<div id="d1" style="width:50px;height:50px;display:
none;background-color:lightgreen;"></div>
<br>
<div id="d2" style="width:50px;height:50px;display:
none;background-color:green;"></div>
<br>
<div id="d3" style="width:50px;height:50px;display:
none;background-color:orange;"></div>
<br>
<div id="d4" style="width:50px;height:50px;display:
none;background-color:yellow;"></div>
<br>
</body>
</html>
輸出:
示例 2:在此示例中,展示了如何使用delay()方法延遲動畫。
HTML
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!--jQuery code to show the working of delay method-->
<script>
$(document).ready(function () {
$("#btn1").click(function () {
$("div").animate({
height: "150px"
});
$("div").animate({
width: "150px"
});
$("div").delay(1200).animate({
width: "300px",
padding: "30px"
});
});
});
</script>
<style>
#d {
display: block;
width: 200px;
height: 100px;
background-color: green;
font-size: 30px;
padding: 10px;
}
</style>
</head>
<body>
<div id="d">GeeksforGeeks !</div>
<!-- Click on this button to show
the effect of delay method -->
<p>
<button id="btn1">Click Me!</button>
</p>
</body>
</html>
輸出:
相關用法
- JQuery delay()用法及代碼示例
- JQuery delegate()用法及代碼示例
- JQuery dequeue()用法及代碼示例
- JQuery detach()用法及代碼示例
- JQuery deferred.always()用法及代碼示例
- JQuery deferred.promise()用法及代碼示例
- JQuery deferred.pipe()用法及代碼示例
- JQuery deferred.fail()用法及代碼示例
- JQuery deferred.then()用法及代碼示例
- JQuery deferred.catch()用法及代碼示例
- JQuery deferred.done()用法及代碼示例
- JQuery data()用法及代碼示例
- JQuery dblclick()用法及代碼示例
- JQuery die()用法及代碼示例
- JQuery andSelf()用法及代碼示例
- JQuery change()用法及代碼示例
- JQuery each()用法及代碼示例
- JQuery end()用法及代碼示例
- JQuery fadeOut()用法及代碼示例
- JQuery height()用法及代碼示例
- JQuery innerHeight()用法及代碼示例
- JQuery keydown()用法及代碼示例
- JQuery keypress()用法及代碼示例
- JQuery next()用法及代碼示例
- JQuery nextAll()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery delay() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。