简单的CSS3动画无法在Webkit中运行

时间:2012-11-19 09:33:23

标签: css3 animation webkit

在此处构建网站:http://chooseavirb.com/strat/

出于某种原因,webkit - chrome,safari -animations未触发:

@-webkit-keyframes slideright{
0% {transform: translate(0px, 0px)}
20% {transform: translate(00px,0px)}
25% {transform: translate(150px, 0px)}
45% {transform: translate(150px,0px)}
50% {transform: translate(300px,0px)}
70% {transform: translate(300px,0px)}
75% {transform: translate(150px,0px)}
95% {transform: translate(150px,0px)}
100% {transform: translate(0px,0px)}
}

#SliderNine img
{display: inline-block;
 animation: slideright 30s infinite;
-moz-animation: slideright 30s infinite;
-webkit-animation: slideright 30s infinite;   
-ms-animation: slideright 30s infinite;     
}

任何有专业知识的人都可以说这可能会发生吗?它在firefox.-

上工作正常

1 个答案:

答案 0 :(得分:1)

请检查以下链接。

http://css-tricks.com/snippets/css/keyframe-animation-syntax/

还可以使用特定的浏览器相关变换动画,如下所示

实施例: -

-webkit-transform:  translate(0px, 0px);

-o-transform: translate(0px, 0px); 

-moz-transform: translate(0px, 0px);

它可能为你创造魔法..!

这可能有助于举例

http://www.w3schools.com/css3/css3_2dtransforms.asp