Animationend事件未在:after元素上触发

Rob*_*n_f 3 javascript css jquery events animation

我在:after元素上设置了动画,并在animationend事件上设置了事件处理程序。但是,animationend事件永远不会在IE10 / IE11中触发。

$(document).ready(function(){
    var testdiv = $('#testid');
    testdiv.on('animationend webkitAnimationEnd', function(){
        document.writeln('Animation has ended');
    });
});
Run Code Online (Sandbox Code Playgroud)

JSFiddle:http : //jsfiddle.net/Robin_f/R3qEG/

衷心希望有人能帮助我。

Rob*_*n_f 5

在网络上搜索后,很明显IE尚不支持对伪元素上的动画事件的绑定。我在原始帖子中发布的jsFiddle使其更加明显,当动画结束时不会触发该事件。