我想解決正確的行爲,將多個回調串起來。CoffeeScript中的多個回調
class Person
move_head: ->
head.animate({
left: x,
},{
complete: @move_foot,
});
move_foot: ->
foot.animate({
left: x,
},{
complete: @move_arm,
});
move_arm: ->
arm.animate({
left: x,
},{
complete: something_else,
});
現在的問題是,頭動畫很好,哪個叫腳。腳也很好。問題在於,腳完成後,手臂沒有動畫。我無法弄清楚問題可能是什麼。我猜測它可能與範圍問題有關。
謝謝你的工作。我很好奇,爲什麼? – Alexis 2012-02-22 05:49:21
非常感謝您的更新! – Alexis 2012-02-22 05:49:29