有没有办法为SVG中的动画长度设置全局默认值

时间:2013-09-08 17:36:15

标签: animation svg

我想在SVG中设置动画持续时间的全局值,可能是通过CSS。但是,下面的代码未设置所需的持续时间。

  <style>
     .animate {
      dur: 5s
     }
  </style>
  <animateTransform class="animate" id="at1" attributeName="transform" type="translate" begin="showLine.begin+0s" fill="freeze" from="0,100" to="0,500"/>

有没有办法为SVG中的动画长度设置全局默认值?感谢。

1 个答案:

答案 0 :(得分:1)

不,SMIL动画使用属性而不是CSS属性,因此您无法使用CSS设置它们。