svg animateTransform同时触发多个动画

时间:2014-05-19 11:46:33

标签: svg svg-animate

在以下示例中,我需要同时执行所有动画。但是效果只有一个。

<g>
    <animateTransform attributeName="transform" attributeType="XML"
    type="rotate" values="2 100 100; -1 100 100; 1 100 100; -0.5 100 100 0.5 100 100" begin="indefinite" dur="0.35s" fill="freeze" />

    <animateTransform attributeName="transform" attributeType="XML"
                      type="scale" values="1; 1.2; 1" begin="indefinite" dur="0.35s" fill="freeze" />

    <animateTransform attributeName="transform" attributeType="XML"
                      type="translate" values="0 0; -100 -100; 0; 0" begin="indefinite" dur="0.35s" fill="freeze" />

    <image x="0" y="0" width="200" height="200"  xlink:href="<?php  echo $cck->getValue('project_icon'); ?>" />
</g>

行动已由js:

触发
var animations = $( $this ).find( 'animateTransform' );
animations[0].beginElement();
animations[1].beginElement();
animations[2].beginElement();

1 个答案:

答案 0 :(得分:8)

您的脚本中没有错误:

  

开始= “不确定”

应该是:

  

repeatCount = “不确定”

轮换值中,您忘记用分号分隔最后的,并且在翻译部分中有一个额外的分号。

为了执行少量转换,您需要通过添加(不需要将其添加到第一次转换)来对结果求和

  

添加剂= “总和”

所以你的代码应该是这样的:

<g>
   <animateTransform attributeName="transform" attributeType="XML"
       type="rotate" values="2 100 100;-1 100 100;1 100 100;-0.5 100 100;0.5 100 100" repeatCount="indefinite" dur="0.35s" fill="freeze" />

   <animateTransform attributeName="transform" attributeType="XML"
                      type="scale" values="1;1.2;1" repeatCount="indefinite" dur="0.35s" fill="freeze" additive="sum"/>

   <animateTransform attributeName="transform" attributeType="XML"
                      type="translate" values="0 0;-100 -100;0 0" repeatCount="indefinite" dur="0.35s" fill="freeze" additive="sum"/>

   <image x="0" y="0" width="200" height="200"  xlink:href="<?php  echo $cck->getValue('project_icon'); ?>" />
</g>
BTW旋转你的图像在0.5度是不明显的,为什么要这么麻烦?!

在这里你可以阅读更多相关信息: SVG-SMIL animation tutorial