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
}
link|improve this question

feedback

5 Answers

up vote 12 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',
      'MSTransition':'msTransitionEnd',
      '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);
link|improve this answer
1  
That's nice, thanks! – Duopixel Feb 1 at 3:25
feedback

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

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

In library-less javascript it gets a bit verbose:

element.addEventListener(webkitTransitionEnd, function(){callfunction()},false);
element.addEventListener(oTransitionEnd, function(){callfunction()},false);
element.addEventListener(transitionEnd, function(){callfunction()},false);

function callfunction() {
   //do whatever
}
link|improve this answer
feedback

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.

link|improve this answer
feedback

Browser sniffing is evil. If a feature is available, use it. Start with ones that are more wide-spread. Otherwise try another route. If all fails, have a fall back.

link|improve this answer
1  
Thank you for your response, but perhaps I didn't explain myself clearly. What I'm looking for is a cross-browser way of adding event listeners to CSS transitions. – Duopixel Feb 17 '11 at 0:52
2  
Actually - there's only one reason to use browser sniffing and that's when a feature is available on a browser/platform but the performance is so terrible that you really don't want to use it - e.g. 3D transforms in Chrome – Michael Mullany Feb 17 '11 at 14:44
feedback

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();
});
link|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
feedback

Your Answer

 
or
required, but never shown

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