TransitionEnd事件没有解雇?

时间:2012-09-03 15:05:51

标签: jquery css3

我有多个元素,每个元素都在(有些)持续时间内动画。我正在使用CSS3转换动画,使用jQuery库和David Walshtransitionend辅助函数。

我的问题是transitionEnd事件没有被解雇! (在Chrome和Firefox中)

我的代码:

var $children = $container.find('.slideblock').children();

if(Modernizr.csstransitions && Modernizr.csstransforms3d) {

    if($.browser.webkit === true) {
        $children.css('-webkit-transform-style','preserve-3d')
    }

    $children.each(function(i){
        $(this).on(whichTransitionEvent,function () {
            $(this).remove();
        });
        $(this).show().css('animation','slideOutToRight ' + ((Math.random() / 2) + .5) + 's');
    });

}

更新

whichTransitionEvent变量指向一个自执行函数,该函数返回包含事件名称的字符串:

var whichTransitionEvent = (function (){
    var t;
    var el = document.createElement('fakeelement');
    var transitions = {
      'transition'       :'transitionEnd',
      'OTransition'      :'oTransitionEnd',
      'MSTransition'     :'msTransitionEnd',
      'MozTransition'    :'transitionend',
      'WebkitTransition' :'webkitTransitionEnd'
    }

    for(t in transitions){
        if( el.style[t] !== undefined ){
            return transitions[t];
        }
    }
} ());

console.log(whichTransitionEvent);        // returns "webkitTransitionEvent" in Chrome
console.log(typeof whichTransitionEvent); // returns "string"

3 个答案:

答案 0 :(得分:11)

不要将'过渡'与'动画'混淆。

CSS动画有不同的回调。

以下是动画的回调:

 $(document).one("animationend webkitAnimationEnd oAnimationEnd MSAnimationEnd", 
                "#robot", 
    function (event)
    {
        // complete
    });

答案 1 :(得分:6)

尝试在Chrome 29和Firefox 23中复制此功能,原始功能以相同方式失败,即我看到console.log(whichTransitionEvent)两者都返回'transitionEnd'

重新排序transitions哈希内的元素修复了这个问题,建议两者都有未加前缀的标准属性以及它们自己的前缀。

下面的重构函数,它会为我激发正确的事件:

function whichTransitionEvent(){
  var t;
  var el = document.createElement('fakeelement');
  var transitions = {
    'WebkitTransition' :'webkitTransitionEnd',
    'MozTransition'    :'transitionend',
    'MSTransition'     :'msTransitionEnd',
    'OTransition'      :'oTransitionEnd',
    'transition'       :'transitionEnd'
  }

  for(t in transitions){
    if( el.style[t] !== undefined ){
      return transitions[t];
    }
  }
}

如果有帮助,请告诉我

答案 2 :(得分:-1)

您正在传递一个函数而不是一个字符串,因此您正在做相当于......

$(this).on(function(){...}, function() {...})

要解决此问题,我建议在脚本开头设置字符串,这样就不会多次调用它。

if(Modernizr.csstransitions && Modernizr.csstransforms3d) {
    var transitionEnd = whichTransitionEvent();
    if($.browser.webkit === true) {
        $children.css('-webkit-transform-style','preserve-3d')
    }

    $children.each(function(i){
        $(this).on(transitionEnd,function () {
            $(this).remove();
        });
        $(this).show().css('animation','slideOutToRight ' + ((Math.random() / 2) + .5) + 's');
    });

}