Al igual que mi título dice, estoy tratando de crear mediante programación un elemento de imagen SVG en una página HTML utilizando javascript. Por alguna razón, mi código de JavaScript básico no funciona, sin embargo, si uso la biblioteca raphaeljs, funciona bien. Entonces, obviamente, hay un problema con mi js, simplemente no puedo entender qué es.Creación mediante programación de un elemento de imagen SVG con javascript
(nota: el navegador de destino es FF4 +)
Aquí está la página básica con una versión HTML de lo que estoy tratando de lograr hasta la parte superior:
<html>
<head>
<script type="text/javascript" src="http://raphaeljs.com/raphael.js"></script>
</head>
<body>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
id="test1"
height="200px"
width="200px">
<image
id="testimg1"
xlink:href="http://i.imgur.com/LQIsf.jpg"
width="100"
height="100"
x="0"
y="0"/>
</svg>
<hr />
<p id="testP1">
</p>
<hr />
<p id="testP2">
</p>
</body>
</html>
Y aquí es mi javascript:
var paper = Raphael(document.getElementById("testP1"), 200, 200);
paper.image("http://i.imgur.com/LQIsf.jpg", 0,0, 100, 100);
var svg = document.createElementNS('http://www.w3.org/2000/svg','svg');
svg.setAttributeNS('http://www.w3.org/2000/svg','xlink','http://www.w3.org/1999/xlink');
svg.setAttributeNS('http://www.w3.org/2000/svg','height','200');
svg.setAttributeNS('http://www.w3.org/2000/svg','width','200');
svg.setAttributeNS('http://www.w3.org/2000/svg','id','test2');
var svgimg = document.createElementNS('http://www.w3.org/2000/svg','image');
svgimg.setAttributeNS('http://www.w3.org/2000/svg','height','100');
svgimg.setAttributeNS('http://www.w3.org/2000/svg','width','100');
svgimg.setAttributeNS('http://www.w3.org/2000/svg','id','testimg2');
svgimg.setAttributeNS('http://www.w3.org/1999/xlink','href','http://i.imgur.com/LQIsf.jpg');
svgimg.setAttributeNS('http://www.w3.org/2000/svg','x','0');
svgimg.setAttributeNS('http://www.w3.org/2000/svg','y','0');
svg.appendChild(svgimg);
document.querySelector('#testP2').appendChild(svg);
ejemplo vivo: http://jsfiddle.net/Yansky/UVFBj/5/
Ahh, ya veo. Gracias por aclarar eso. :) – Yansky
Dios mío, muchas gracias. ¡Tu eres el Rey! –
Salvaste mi día, eres un caballero y un erudito, creo que señor. –