Last active
May 29, 2016 04:30
-
-
Save nishinoshake/be0f85e3b8e1c005ffbd to your computer and use it in GitHub Desktop.
CSSアニメーションイベント
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$elm.addClass('scale-up').on('webkitTransitionEnd.scale-up transitionend.scale-up',function() { | |
$(this).removeClass('scale-up').off('.scale-up'); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//アニメーション スタート | |
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