Companimation:CSS3动画仅适用于负载

时间:2014-06-17 02:35:00

标签: jquery css css3 firefox animation

我正在使用Mike Fowler's companimation library for compass,但我的动画在FireFox中根本不起作用(尽管它们在Chrome中运行良好)。首次显示文档时,将触发动画,但是当通过jQuery显示/隐藏元素时,动画将不会触发。

Here's a plugin I made using the library that has animations。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:-1)

我正在使用JQueryKeyframes。这行得通。 试试吧

https://github.com/jQueryKeyframes/jQuery.Keyframes

您可以自定义功能完整

$('selector').playKeyframe({
    name: "keyframe_name", 
    duration: time*1000,
    timingFunction: 'linear', 
    delay: 0,
    //repeat: 0, 
    direction: 'normal', 
    fillMode: 'forwards',
    complete: function(){ 

        $('selector').css('-webkit-animation', '');
    }
});