W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
從隊(duì)列最前端移除一個(gè)隊(duì)列函數(shù),并執(zhí)行他。
隊(duì)列名,默認(rèn)為fx
使用 dequeue() 終止一個(gè)自定義的隊(duì)列函數(shù)
$("div").queue(function () {
$(this).toggleClass("red");
$(this).dequeue();
});
用dequeue來結(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);
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: