jQuery delay()方法

jQuery delay()方法

jQuery delay()方法用于延迟执行队列中的函数。这是一种在排队的jQuery效果之间制造延迟的最佳方法。jQuery的delay()方法设置一个计时器以延迟执行队列中的下一个项目。

语法 :

$(selector).delay (speed, queueName) 

speed :这是一个可选参数,用于指定延迟的速度。可能的值有slow、fast和毫秒。

queueName :这也是一个可选参数,用于指定队列的名称。默认值是“fx”,即标准的队列效果。

让我们举个例子来看延迟效果:

<!DOCTYPE html>  
<html>  
<head>  
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>  
<script>  
(document).ready(function(){("button").click(function(){  
    $("#div1").delay("slow").fadeIn();  
});  
});  
</script>  
</head>  
<body>  
<button>Click me</button><br>
<div id="div1" style="width:90px;height:90px;display:none;background-color:black;"></div><br>  
</body>  
</html>  

使用不同值的jQuery delay() 示例

让我们看一个使用快速、慢速和毫秒值的jQuery delay() 效果示例。

<!DOCTYPE html>  
<html>  
<head>  
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>  
<script>  
(document).ready(function(){("button").click(function(){  
    ("#div1").delay("fast").fadeIn();("#div2").delay("slow").fadeIn();  
    ("#div3").delay(1000).fadeIn();("#div4").delay(2000).fadeIn();  
    $("#div5").delay(4000).fadeIn();  
});  
});  
</script>  
</head>  
<body>  
<p>This example sets different speed values for the delay() method.</p>  
<button>Click to fade in boxes with a different delay time</button>  
<br><br>  
<div id="div1" style="width:90px;height:90px;display:none;background-color:black;"></div><br>  
<div id="div2" style="width:90px;height:90px;display:none;background-color:green;"></div><br>  
<div id="div3" style="width:90px;height:90px;display:none;background-color:blue;"></div><br>  
<div id="div4" style="width:90px;height:90px;display:none;background-color:red;"></div><br>  
<div id="div5" style="width:90px;height:90px;display:none;background-color:purple;"></div><br>  
</body>  
</html>  

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程