SVG Elements的动态动画在IE中不起作用

时间:2013-12-13 11:05:00

标签: javascript internet-explorer svg smil fakesmile

我正在尝试使用jquery动态添加DOM元素时执行SVG元素的动画。如果我在<body>内添加这些元素,如下所示。工作样本就是这样 http://jsfiddle.net/bZdfH/2/

<svg>
    <script type="text/ecmascript" xlink:href="http://leunen.me/fakesmile/smil.user.js"/>
    <circle cx="60" cy="60" r="20" style="fill: pink; stroke: red;" >
    <animate attributeName="r" dur="4s" values="20; 0; 20" repeatCount="indefinite"/>
    </circle>
 </svg>

当我动态添加动画时,动画不会在IE中启动,但它适用于Chrome和FireFox.Here就是我所拥有的。

<svg>
 <script type="text/ecmascript" xlink:href="http://leunen.me/fakesmile/smil.user.js"/>
 <circle cx="60" cy="60" r="20" style="fill: pink; stroke: red;" onmouseover="changeImage(this)" >
 </circle>
</svg>
<script>
    function changeImage(circle) {
      while (circle.firstChild) {
        circle.removeChild(circle.firstChild);
      }
      circle.setAttributeNS(null, "fill", "blue");
        var animate = document.createElementNS("http://www.w3.org/2000/svg", "animate");
        animate.setAttributeNS(null, "attributeName", "r");
        animate.setAttributeNS(null, "values", "20;0;20");
        animate.setAttributeNS(null, "dur", "6s");
        animate.setAttributeNS(null, "repeatCount", "indefinite");
        circle.appendChild(animate);
      }
</script>

以下是工作样本的jsfiddle。任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

IE不支持SMIL动画。 资料来源:http://caniuse.com/#search=svg