$("#IMAGE1").animate({"left": "+=1050px", queue: false}, "slow", function()
{
// Want this to happen when the image2 animation is completed as well.
$("#IMAGE1").css('left', $('#IMAGE2').position().left);
}
$("#IMAGE2").animate({"left": "+=1050px", queue: false}, "slow");
如何在image1.animation的回調函數體內完成image2.animation的檢查?如何檢查動畫是否在其他動畫回調函數內完成?
爲什麼不在動畫回調中調用image2動畫1 –
您有語法錯誤。你第一次調用'.animate()'沒有關閉。另外,你不需要重新查詢DOM,你可以在回調中使用'$(this)'。 – ahren
@ Sushanth--我正在製作一個滑塊,並且我需要兩張圖像同時進行動畫製作。 – user1534664