Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
15 ページ以上の JQuery アニメーション クリックスルーがあります。クライアントはそれを自動開始することを望んでおり、そのままにしておくと、アニメーションが最後まで再生されます。このセクションを再生し、終了したら次のセクションを再生し、最後までというように、ステップまたはセグメントでこれを行う方法はありますか?
コールバックを簡単に使用できます。
$("something").animate({stuff}, duration, function(){ // CALL NEXT STEP HERE, THIS EXECUTES WHEN ANIMATION COMPLETES });
http://api.jquery.com/animate/