为什么这个JS创建的SVG <animate>在Chrome中不起作用?</animate>

时间:2012-04-10 17:16:42

标签: javascript google-chrome svg smil

考虑这个简单的SVG SMIL动画:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="-50 -50 100 100">
  <circle r="40" fill="red">
    <animate
      attributeType="CSS" begin="click"
      attributeName="fill" to="blue" dur="0.3s" fill="freeze"/>
  </circle>
</svg>

这在Windows上的Chrome v18中正常工作(模糊了保持颜色的错误):
http://phrogz.net/svg/change-color-on-click-simple.svg

当我使用JavaScript生成<animate>元素时,一切都适用于Firefox,Safari和Opera,但不适用于Chrome。在Chrome中,单击圆圈时没有任何反应。

<svg xmlns="http://www.w3.org/2000/svg" viewBox="-50 -50 100 100">
  <circle r="40" fill="red"/>
  <script>
    var c = document.querySelector('circle');
    createOn(c,'animate',{
      attributeType:'CSS', begin:'click',
      attributeName:'fill', to:'blue',
      dur:'0.3s', fill:'freeze'
    });
    function createOn(el,name,attrs){
      var e = el.appendChild(document.createElementNS(el.namespaceURI,name));
      for (var name in attrs) e.setAttribute(name,attrs[name]);
      return e;
    }
  </script>

在此处查看此JavaScript版本:
http://phrogz.net/svg/change-color-on-click-simple-js.svg

控制台中没有脚本错误。第一个示例的内容实际上是通过在加载第二个示例后从Chrome开发者工具中选择“复制为HTML”生成的,因此我知道它正在生成正确的属性名称和值。 namespaceURI元素的<animate>在两者(SVG名称空间)之间是相同的,所有属性的namespaceURI也是如此(null)。     

有没有办法让JS生成的<animate>元素在Chrome中运行?

1 个答案:

答案 0 :(得分:5)

如果在附加动画之前定义属性,它似乎可以正常工作。

http://jsfiddle.net/VFUHk/