Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/90.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html CSS3动画在Mozilla firefox上不起作用_Html_Css_Mozilla_Css Animations - Fatal编程技术网

Html CSS3动画在Mozilla firefox上不起作用

Html CSS3动画在Mozilla firefox上不起作用,html,css,mozilla,css-animations,Html,Css,Mozilla,Css Animations,我正在尝试使用CSS3关键帧制作鸟的拍打效果。它在谷歌浏览器上运行良好。它在mozilla firefox上似乎不起作用 这是我的如果你使用-moz动画,它可以工作:飞行0.2s步(4)10。看起来firefox在缺少动画属性方面遇到了一些问题 我不确定其他0应该用于什么,但它看起来不需要,除非我缺少一些东西 编辑:我在Chrome中验证了不需要额外的0: .follow-button:hover { -webkit-animation: fly 0.2s steps(4) 10;

我正在尝试使用CSS3
关键帧制作鸟的拍打效果。它在谷歌浏览器上运行良好。它在mozilla firefox上似乎不起作用


这是我的

如果你使用
-moz动画,它可以工作:飞行0.2s步(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;
}

如果您使用
-moz动画,它会工作:飞行0.2s步(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;
}