?
本文檔使用 php中文網(wǎng)手冊(cè) 發(fā)布
從隊(duì)列最前端移除一個(gè)隊(duì)列函數(shù),并執(zhí)行他。
隊(duì)列名,默認(rèn)為fx
使用 dequeue() 終止一個(gè)自定義的隊(duì)列函數(shù)
$("div").queue(function () { $(this).toggleClass("red"); $(this).dequeue(); });
用dequeue來(lái)結(jié)束自定義隊(duì)列函數(shù),并讓隊(duì)列繼續(xù)進(jìn)行下去。
<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); });