$(this).animate({"left": left+"px"}, { queue: false, duration: 500 })
.animate({"top": top+"px"}, { queue: false, duration: 500 })
.animate({"height": size+"px"}, { queue: false, duration: 500 })
.animate({"width": size+"px"}, { queue: false, duration: 500 });
我是jQuery的初學者。我想在動畫完成時運行以下代碼:動畫完成時執行代碼jQuery
$('#map').css('cursor','pointer');
我該怎麼做?而且,如果我的代碼不好,如果你改進了,我會非常感激。
謝謝!