admin管理员组文章数量:1344925
So I wanted to open a dialog in the munity about various techniques people have used to detect when an animation is ended. Particularly when fading something out (read opacity).
Now I am not sure what other people have used, but I have found it particularly effective to use a timeout to wait for the animation to end, and then hide it, like so (using jQuery obviously):
$('#someDiv').css({'opacity':0});
setTimeout(function(){$('#someDiv').hide()}, 500);
where the CSS looks like this:
#someDiv {
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
-ms-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
}
I am aware of the transition end bindings that most of the modern browsers have implemented, but I seriously dislike using them. The seem a bit flaky and I hate having to loop over and set the listeners up. Plus with each browser having a totally different event fired, it gets hairy.
What are some thoughts on the various techniques that are out there? Since this is relatively new and undocumented, let's see what people have been using!
Thanks guys! -Geoff
So I wanted to open a dialog in the munity about various techniques people have used to detect when an animation is ended. Particularly when fading something out (read opacity).
Now I am not sure what other people have used, but I have found it particularly effective to use a timeout to wait for the animation to end, and then hide it, like so (using jQuery obviously):
$('#someDiv').css({'opacity':0});
setTimeout(function(){$('#someDiv').hide()}, 500);
where the CSS looks like this:
#someDiv {
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
-ms-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
}
I am aware of the transition end bindings that most of the modern browsers have implemented, but I seriously dislike using them. The seem a bit flaky and I hate having to loop over and set the listeners up. Plus with each browser having a totally different event fired, it gets hairy.
What are some thoughts on the various techniques that are out there? Since this is relatively new and undocumented, let's see what people have been using!
Thanks guys! -Geoff
Share Improve this question asked Mar 30, 2012 at 12:57 gabaum10gabaum10 3,8274 gold badges49 silver badges89 bronze badges1 Answer
Reset to default 12There is an event for this called
transitionend
which makes much more sense than to use a setTimeout
.
So you should go like
$('#someDiv').css({'opacity':0}).on('transitionend', function(e) {
$(this).hide();
});
Since the name for that event-type can vary between browsers, I wrote a little helper:
var dummy = document.createElement( 'div' ),
eventNameHash = { webkit: 'webkitTransitionEnd', Moz: 'transitionend', O: 'oTransitionEnd', ms: 'MSTransitionEnd' },
transitionEnd = (function _getTransitionEndEventName() {
var retValue = 'transitionend';
Object.keys( eventNameHash ).some(function( vendor ) {
if( vendor + 'TransitionProperty' in dummy.style ) {
retValue = eventNameHash[ vendor ];
return true;
}
});
return retValue;
}());
So use that code to advance-conditional load the correct event name and then use the transitionEnd
variable for the .on()
binding name.
Example: http://jsfiddle/QBFtH/1/
本文标签: javascriptCSS3 animation end techniquesStack Overflow
版权声明:本文标题:javascript - CSS3 animation end techniques - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743792386a2539810.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论