Skip to content

Instantly share code, notes, and snippets.

@MikeTatsky
Forked from maccman/transition_sniffing.js
Created February 18, 2013 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikeTatsky/4975339 to your computer and use it in GitHub Desktop.
Save MikeTatsky/4975339 to your computer and use it in GitHub Desktop.
function whichTransitionEvent(){
var t;
var el = document.createElement('fakeelement');
var transitions = {
'transition':'transitionend',
'MSTransition':'msTransitionEnd',
'MozTransition':'transitionend',
'WebkitTransition':'webkitTransitionEnd'
}
for(t in transitions){
if( el.style[t] !== undefined ){
return transitions[t];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment