基於this代碼動畫,我試圖動畫動態生成的SVG元素:與SVG動態添加元素
var svgnode = document.createElementNS('http://www.w3.org/2000/svg','svg');
var circle = document.createElementNS('http://www.w3.org/2000/svg','circle');
circle.setAttribute("cx", "10");
circle.setAttribute("cy", "10");
circle.setAttribute("r", "10");
circle.setAttribute("fill", "blue");
var ani = document.createElementNS("http://www.w3.org/2000/svg","animateTransform");
ani.setAttribute("attributeName", "transform");
ani.setAttribute("attributeType", "xml");
ani.setAttribute("type", "translate");
ani.setAttribute("from", "10");
ani.setAttribute("to", "100");
ani.setAttribute("begin", "0s");
ani.setAttribute("dur", "2s");
ani.setAttribute("fill", "freeze");
circle.appendChild(ani);
svgnode.appendChild(circle);
document.getElementById('mydiv').appendChild(svgnode);
的SVG顯示了罰款,但動畫不起作用。如果我用普通的HTML/SVG編寫等效代碼,它就可以工作。我正在使用Chrome。
這是工作,Chrome會V15 http://jsfiddle.net/SF5nE/ – Bakudan
升級,而它的工作 - 謝謝! – Hendekagon