?
This document uses PHP Chinese website manual Release
從隊列最前端移除一個隊列函數(shù),并執(zhí)行他。
隊列名,默認為fx
使用 dequeue() 終止一個自定義的隊列函數(shù)
$("div").queue(function () { $(this).toggleClass("red"); $(this).dequeue(); });
用dequeue來結束自定義隊列函數(shù),并讓隊列繼續(xù)進行下去。
<style> div { margin:3px; width:50px; position:absolute; height:50px; left:10px; top:30px; background-color:yellow; } div.red { background-color:red; } </style> <button>Start</button> <div></div>
$("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); });