2014-11-22 72 views
1

這裏是我做的CSS3代碼和它並不運行在Firefox在谷歌我的CSS3動畫工作,但它不工作在Firefox上

@keyframes moveobject { 
    0% {top: 0px; background: red; width: 100px;} 
    100% {top: 200px; background: yellow; width: 300px;} 
} 
+0

我只是用你的代碼做了一個jsfiddle,它在Firefox中工作正常。 http://jsfiddle.net/57xarc6q/我打算建議廠商前綴,但他們已經支持了一段時間http://caniuse.com/#search=css-animation – 2014-11-22 08:01:03

+0

它確實在firefox上移動先生..現在它不適用於谷歌瀏覽器:( – Jon 2014-11-22 08:14:49

回答

1

添加供應商前綴

@-webkit-keyframes moveobject { 
    0% {top: 0px; background: red; width: 100px;} 
    100% {top: 200px; background: yellow; width: 300px;} 
} 

@-moz-keyframes moveobject { 
    0% {top: 0px; background: red; width: 100px;} 
    100% {top: 200px; background: yellow; width: 300px;} 
} 

@keyframes moveobject { 
    0% {top: 0px; background: red; width: 100px;} 
    100% {top: 200px; background: yellow; width: 300px;} 
} 


-webkit-animation: moveobject 5s infinite; 
-moz-animation: moveobject 5s infinite; 
animation: moveobject 5s infinite; 

或使用prefixfree by lea verou

相關問題