Sulla base di this codice, sto cercando di animare un elemento SVG generati dinamicamente:SVG animate con elementi aggiunti dinamicamente
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);
l'SVG si presenta bene, ma l'animazione non funziona. Se scrivo il codice equivalente in semplice HTML/SVG funziona. Sto usando Chrome.
Si sta lavorando, sotto Chrome v15 http://jsfiddle.net/SF5nE/ – Bakudan
aggiornato e funziona - grazie! – Hendekagon