CSS3动画只与webkit一起使用?

时间:2012-11-21 00:48:18

标签: firefox google-chrome css3 animation webkit

我在网站上制作了一个带有拼图的CSS3动画。我正在使用的代码如下。出于某种原因,动画仅适用于Safari和Chrome。如何让动画与Firefox和Opera一起使用?谢谢您的反馈!

img#animation
{
length:150px;
width:150px;
position:relative;
animation:puzzle 4s
-moz-animation:puzzle 4s;
-webkit-animation:puzzle 4s;
-o-animation:puzzle 4s;
}
@keyframes puzzle
{
from {left:-400px; top:0px;}
to {left:41px; top:0px;}
}
@-moz-keyframes puzzle
{
from {left:-400px; top:0px;}
to {left:41px; top:0px;}
}
@-webkit-keyframes puzzle
{
from {left:-400px; top:0px;}
to {left:40.5px; top:0px;}
}
@-o-keyframes puzzle
{
from {left:-400px; top:0px;}
to {left:41px; top:0px;}
}

1 个答案:

答案 0 :(得分:1)

你在这一行中遗漏了一个分号

animation:puzzle 4s;
                ---^

添加它,它将起作用 - DEMO