Are there any events fired by an element to check wether a css3 transition has started or end?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 23 down vote accepted

W3C CSS Transitions Draft

The completion of a CSS Transition generates a corresponding DOM Event. An event is fired for each property that undergoes a transition. This allows a content developer to perform actions that synchronize with the completion of a transition.


Webkit

You can set a handler for a DOM event that is sent at the end of a transition. The event is an instance of WebKitTransitionEvent and its type is webKitTransitionEnd in JavaScript.

box.addEventListener( 'webkitTransitionEnd', 
    function( event ) { alert( "Finished transition!" ); }, false );

Mozilla

There is a single event that is fired when transitions complete. In Firefox, the event is transitionend, in Opera, oTransitionEnd, and in WebKit it is webkitTransitionEnd.

Opera

There is one type of transition event available. The oTransitionEnd event occurs at the completion of the transition.

Internet Explorer

The MSTransitionEnd event occurs at the completion of the transition. If the transition is removed before completion, the event will not fire.


SO: How do I normalize CSS3 Transition functions across browsers?

link|improve this answer
3  
Note that the event is called "transitionend" in firefox and "oTransitionEnd" in Opera – Andreas Köberle May 13 '10 at 20:25
3  
No one has mentioned anything about the transition-start part of the question. Is there no way to register an event handler to be fired before the transition begins? – tyler Aug 31 '11 at 17:07
Is there now a standard way of achieving this? Seems 2 years is a long time! Things have likely changed. – Mild Fuzz May 22 at 15:52
@tyler i don't know how to work around the lack of transitions-start. – rebus May 22 at 16:43
@Mild Fuzz linked stackoverflow question has interesting solution. – rebus May 22 at 16:43
feedback

Your Answer

 
or
required, but never shown

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