Skip to content

Instantly share code, notes, and snippets.

@maccman
Created December 30, 2012 20:04
Show Gist options
  • Select an option

  • Save maccman/4414792 to your computer and use it in GitHub Desktop.

Select an option

Save maccman/4414792 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];
}
}
}
@ionutzp

ionutzp commented Jul 19, 2013

Copy link
Copy Markdown

I have successfully used callbacks by registering the events for all browsers so i would recommend that.
eg: this.$el.on('webkitTransitionEnd transitionend msTransitionEnd oTransitionEnd', function(event) { ...

@davidsm

davidsm commented Oct 4, 2013

Copy link
Copy Markdown

You shouldn't register all events. The reason for this is that at least Chrome as of version 29 will fire off both webkitTransitionEnd and transitionend. So your function will fire twice.

@Hengjie

Hengjie commented Mar 29, 2014

Copy link
Copy Markdown

The way you get around firing function twice is to add a namespace to the event name and turning them all off once one of them have been executed.

this.$el.on('webkitTransitionEnd.blah transitionend.blah msTransitionEnd.blah oTransitionEnd.blah', function(event) {
  this.$el.off(".blah");
}

Obviously, replace blah with your own namespace.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment