html svg动画无法在firefox上工作(使用chrome)

时间:2015-04-06 19:05:23

标签: html svg css-animations svg-animate

我找到了这个svg动画示例: http://codepen.io/hbuchel/pen/qLxAB?editors=110
它正在使用chrome,但不适用于firefox ..
我只能看到没有动画的图像..我不明白为什么......

如何让它在firefox上运行?

更新:之前我应该​​成为css动画的问题,但我测试了它并且工作正常,这是另一个问题..

1 个答案:

答案 0 :(得分:0)

您是否尝试过-webkit-animation和其他人?

.clip {
  -webkit-animation: slide 8s infinite; 
  -moz-animation: slide 8s infinite;
  -o-animation: slide 8s infinite;
  animation: slide 8s infinite;
}
相关问题