I'd like to delete an object after it's done animating with a CSS transition, but I'm not able to use a JavaScript library.

How do I detect when the animation is done? Do I use a callback or custom event somehow?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted
element.addEventListener('transitionend', function(event) {
    alert("CSS Property completed: " + event.propertyName);
}, false );

For now, the exact event name has not been standardized. Here's a quote from MDN:

In Firefox, the event is transitionend,
in Opera, oTransitionEnd,
and in WebKit it is webkitTransitionEnd.

Here's the fiddle for Webkit: http://jsfiddle.net/bNgWY/

link|improve this answer
How do I assign this to a particular transition, like opacity? – Wraith Jan 11 at 5:41
@Wraith - You cannot assign it to a particular transition. Rather, you listen to the event firing on the element. You can then get the information you are looking for from the event object. See my update. – Joseph Silber Jan 11 at 5:47
1  
@Wraith: Look for "Detecting the completion of a transition" on the page Joseph linked to. propertyName: A string indicating the name of the CSS property whose transition completed. elapsedTime: A float indicating the number of seconds the transition had been running at the time the event fired. This value isn't affected by the value of transition-delay . – Juan Mendes Jan 11 at 5:47
feedback

Your Answer

 
or
required, but never shown

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