jQuery delay()方法用于延迟队列中函数的执行。意思是让队列中某个函数延迟执行。

语法

$(selector).delay (speed, queueName) ;

参数

  • speed:可选参数。它指定延迟的时间或速度。它可能的值是slow、normal、fast和毫秒。
  • queueName:也是可选参数。它指定队列的名称。其默认值为"fx"标准队列效果。

例子

简单的例子

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

jQuery delay() 方法

多种效果的例子

 <!DOCTYPE html>  
<html>  
<head>  
<script src="https://code.jquery.com/jquery-1.11.2.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> delay() 方法的不同速度的效果。</p>
<button>点击看下效果</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> 
jQuery delay() 方法