我有这个在 Chrome 中工作的 CSS3 动画
.circle-label-rotate {
-webkit-animation-name: rotateThis;
-webkit-animation-duration:.5s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:linear;
}
现在,这将如何在 Mozilla Firefox 上运行——我认为使用keyframes。但我不断出错。您将如何处理上述代码的 Firefox 等效项?
我试过这个:
-moz-animation-duration: 3s;
-webkit-animation-duration: 3s;
-moz-animation-name: slidein;
-webkit-animation-name: slidein;