3

我正在我的网站上制作带有拼图的 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;}
}
4

1 回答 1

1

您在这一行中缺少一个分号

animation:puzzle 4s;
                ---^

添加它,它会工作 -演示

于 2012-11-21T00:53:56.607 回答