dequeue()
执行匹配元素队列的下一个函数。
- .dequeue([queueName ])
- queueName类型: String。一个含有队列名的字符串。默认是
fx,标准的效果队列。
- queueName类型: String。一个含有队列名的字符串。默认是
当.dequeue()被调用的时候,列队中的下一个函数将从这个列队中被移除,然后再执行。这个执行的函数中也应当直接或间接的包含.dequeue()语句,这样才能继续执行队列中的其它函数,所以,这个序列可以继续。
例子
在自定义队列函数中,使用 dequeue 来做结尾,以便队列可以继续运行下去。
<!DOCTYPE html>
<html>
<head>
<style>
div { margin:3px; width:50px; position:absolute;
height:50px; left:10px; top:30px;
background-color:yellow; }
div.red { background-color:red; }
</style>
<script src="https://www.lanmper.cn/static/js/jquery-3.5.0.js"></script>
</head>
<body>
<button>Start</button>
<div></div>
<script>
$("button").click(function () {
$("div").animate({left:'+=200px'}, 2000);
$("div").animate({top:'0px'}, 600);
$("div").queue(function () {
$(this ).toggleClass("red");
$(this ).dequeue();
});
$("div").animate({left:'10px', top:'30px'}, 700);
});
</script>
</body>
</html>
