2009-02-13から1日間の記事一覧

jquery マイナーメソッド stop() とか queue([]) とか

$("#foo") .stop() // Stop any running animations .queue([]) // Empty the queue .animate({ top: 100, left: 100 }, "fast") // For the second animation to skip the queue .animate({ width: 200, height: 200 }, { duration: "slow", queue: false }…