CSS3动画不适用于Mozilla Firefox

Ven*_*raj 1 css html5 mozilla css3 css-animations

我试图使用CSS3使鸟的拍打效果keyframes.它在谷歌浏览器上工作正常.它似乎不适用于Mozilla Firefox.

这是我的小提琴

Mat*_*ell 5

它可以使用-moz-animation: fly 0.2s steps(4) 10;.看起来firefox在缩短动画属性方面存在一些问题.

我不确定其他0应该用于什么,但除非我遗漏了某些内容,否则看起来不需要...

编辑:我在Chrome中验证了不需要额外的0:

.follow-button:hover {
    -webkit-animation: fly 0.2s steps(4) 10;
    -moz-animation: fly 0.2s steps(4) 10;
    animation: fly 0.2s steps(4) 10;
}
Run Code Online (Sandbox Code Playgroud)