Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 04:30
Show Gist options
  • Save nishinoshake/be0f85e3b8e1c005ffbd to your computer and use it in GitHub Desktop.
Save nishinoshake/be0f85e3b8e1c005ffbd to your computer and use it in GitHub Desktop.
CSSアニメーションイベント
$elm.addClass('scale-up').on('webkitTransitionEnd.scale-up transitionend.scale-up',function() {
$(this).removeClass('scale-up').off('.scale-up');
});
//アニメーション スタート
webkitAnimationStart animationstart
//アニメーション イテレーション(1回ごとに)
webkitAnimationIteration animationiteration
//アニメーション エンド
webkitAnimationEnd animationend
//トランジションエンド
webkitTransitionEnd transitionend
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment