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?
The transitionend event is fired when a CSS transition has completed. In the case where a transition is removed before completion, such as if the transition-property is removed or display is set to none , then the event will not be generated.
To trigger an element's transition, toggle a class name on that element that triggers it. To pause an element's transition, use getComputedStyle and getPropertyValue at the point in the transition you want to pause it. Then set those CSS properties of that element equal to those values you just got.
The transitionend event occurs when a CSS transition has completed. Note: If the transition is removed before completion, e.g. if the CSS transition-property property is removed, the transitionend event will not fire. For more information about CSS Transitions, see our tutorial on CSS3 Transitions.
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:
There is a single event that is fired when transitions complete.
In all standard-compliant browser, the event istransitionend
,
in WebKit it iswebkitTransitionEnd
.
Here's the fiddle for Webkit: http://jsfiddle.net/bNgWY/
As I'm currently doing the exact same thing I'll share a useful, cross-browser implementation from a Marakana tutorial.
// First, we store the names of the event according to the browsers
var navigatorsProperties=['transitionend','OTransitionEnd','webkitTransitionEnd'];
//For each of them...
for (var i in navigatorsProperties) {
//We attach it to our overlay div
el.addEventListener(navigatorsProperties[i],function()
{
// Here's the code we want to fire at transition End
console.log('transition end');
},false);
}
It's to be noted that IE10 supports transitions with transitionend
(see MSDN).
IE9 and below do not support transitions (see caniuse.com ) so you won't be able to attach any eventListener to a transition end ( so don't try msTransitionend
or whatever for those browsers).
EDIT: While reading Modernizr documentation on Github I stumbled on their cross-browser polyfills page. Among many other useful links I found this small but extremely good transitionend script.
Mind that the examples in the Github README.md use jQuery but the library indeed requires no libraries and no dependencies as it's written in vanilla javascript.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With