Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Webkit's transition end event is called webkitTransitionEnd, Firefox is transitionEnd, opera is oTransitionEnd. What is a good way of tackling all of them in pure JS? Should I do browser sniffing? or implement each one separately? Some other way that hasn't occured to me?

ie:

//doing browser sniffing
var transitionend = (isSafari) ? "webkitTransitionEnd" : (isFirefox) ? "transitionEnd" : (isOpera) ? "oTransitionEnd";

element.addEventListener(transitionend, function(){
  //do whatever
},false);

or

//asigning an event listener per browser
element.addEventListener(webkitTransitionEnd, function(){callfunction()},false);
element.addEventListener(oTransitionEnd, function(){callfunction()},false);
element.addEventListener(transitionEnd, function(){callfunction()},false);

function callfunction() {
   //do whatever
}
share|improve this question

6 Answers

up vote 50 down vote accepted

There's also a technique used in Modernizr:

function whichTransitionEvent(){
    var t;
    var el = document.createElement('fakeelement');
    var transitions = {
      'transition':'transitionend',
      'OTransition':'oTransitionEnd',
      'MozTransition':'transitionend',
      'WebkitTransition':'webkitTransitionEnd'
    }

    for(t in transitions){
        if( el.style[t] !== undefined ){
            return transitions[t];
        }
    }
}

Then you can just call this function whenever you need the transition end event:

var transitionEnd = whichTransitionEvent();
element.addEventListener(transitionEnd, theFunctionToInvoke, false);
share|improve this answer
1  
That's nice, thanks! – Duopixel Feb 1 '12 at 3:25
3  
oTransitionEnd was lowercased to otransitionend in Opera. See opera.com/docs/specs/presto2.10/#m274 – vieron Aug 31 '12 at 8:28
1  
it also is transitionend in all lowercase now. See dev.w3.org/csswg/css3-transitions/#transition-events – gossi Sep 7 '12 at 21:06
Yeah, to get this to work in Firefox now 'transition':'transitionEnd' needs to be 'transition':'transitionend' – Jackson Gariety Dec 19 '12 at 5:57
1  
I removed the MsTransition bit, but will leave the rest of the answer in tact. The current versions of all major non-WebKit browsers do not require a vendor prefix. transition and transitionend are enough. See: caniuse.com/#search=transitions – webinista Jan 19 at 14:48
show 2 more comments

As per Matijs comment, the easiest way to detect transition events is with a library, jquery in this case:

$("div").bind("webkitTransitionEnd oTransitionEnd otransitionend transitionend msTransitionEnd", function(){
  //code
});

In library-less javascript it gets a bit verbose:

element.addEventListener('webkitTransitionEnd', callfunction, false);
element.addEventListener('oTransitionEnd', callfunction, false);
element.addEventListener('transitionend', callfunction, false);
element.addEventListener('msTransitionEnd', callfunction, false);

function callfunction() {
   //do whatever
}
share|improve this answer
That second-to-last one shouldn't be camelCased. – adlwalrus Nov 4 '12 at 6:02
funny enough, I came here 'cause my colleagues just discovered multiple events were thrown in their code which looked exactly like this answer – Paolo Priotto May 14 at 13:37

I am using

var transEndEventNames = {
        'WebkitTransition': 'webkitTransitionEnd',
        'MozTransition': 'transitionend',
        'OTransition': 'oTransitionEnd otransitionend',
        'msTransition': 'MSTransitionEnd',
        'transition': 'transitionend'
    }, transitionEnd = transEndEventNames[Modernizr.prefixed('transition')];

This is based on the code suggested by Modernizr, but with the extra event for newer versions of Opera.

http://modernizr.com/docs/#prefixed

UPDATE

An alternative I have now been using is to do the following

$(".myClass").on('transitionend webkitTransitionEnd oTransitionEnd otransitionend MSTransitionEnd', 
function() {
 //do something
});
share|improve this answer
This is a great way to do it but it requires Modernizr. Can this be written simply but without Modernizr? – Jackson Gariety Dec 19 '12 at 5:58

The second is the way to go. Only one of those events will fire in every browser, so you can set all of them and it'll work.

share|improve this answer

I use code like this (with jQuery)

var vP = "";
var transitionEnd = "TransitionEnd";
if ($.browser.webkit) {
    vP = "-webkit-";
    transitionEnd = "webkitTransitionEnd";
} else if ($.browser.msie) {
    vP = "-ms-";
} else if ($.browser.mozilla) {
    vP = "-moz-";
    transitionEnd = "transitionend";
} else if ($.browser.opera) {
    vP = "-o-";
    transitionEnd = "oTransitionEnd";
}

That lets me use JS to add things by specifying vP concatentated with the property, and if it didn't hit a browser it just uses the standard. The events lets me easily bind like so:

object.bind(transitionEnd,function(){
    callback();
});
share|improve this answer
Thanks! I ended up doing something similar, but without browser sniffing. You can see the result (and code) here: cssglue.com/cubic. The only problem with your solution is that—if browser vendors decide to standarize their transition events—they might drop their prefixes and they would stop working (unlikely, yet). But yes, it makes the code much more cleaner. – Duopixel Mar 31 '11 at 19:25
I agree, I've been meaning to replace mine with something better, but on the other hand I like the simplicity of it. – Rich Bradshaw Apr 1 '11 at 19:55
2  
For what it's worth. This can be done without browser sniffing by just doing object.bind('transitionend oTransitionEnd webkitTransitionEnd', function() { // callback } ); – Matijs Apr 20 '11 at 12:22
That's a very good point... Thanks! – Rich Bradshaw Apr 20 '11 at 13:27
1  
this doesn't work with ie10 – Tom Nov 27 '12 at 10:36
show 1 more comment

$.support.transition.end will return the right event for the current browser.

This is how Bootstrap does its animation callbacks, though the jQuery docs say not to rely on these properties:

Although some of these properties are documented below, they are not subject to a long deprecation/removal cycle and may be removed once internal jQuery code no longer needs them.

http://api.jquery.com/jQuery.support/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.