Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created September 7, 2014 15:44
Show Gist options
  • Save RyoSugimoto/04ab9471e9c811ebd436 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/04ab9471e9c811ebd436 to your computer and use it in GitHub Desktop.
CSS Transitionのアニメーション終了時に発行するイベント。
var transitionEnds = [
'webkitTransitionEnd',
'oTransitionEnd',
'otransitionend',
'transitionend'
];
$('.elm').on(transitionEnds.join(' '), function (e) {
//
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment