Propiedad SVG UseElement.y
La propiedad UseElement.y de SVG Sintaxis: UseElement.y Valor devuelto: Esta propiedad devuelve Ejemplo 1: HTML <!DOCTYPE html> <html> <body> <svg width=»400″ height=»500″ xmlns=»http://www.w3.org/2000/svg»> <circle id=»gfg» cx=»100″ cy=»100″ r=»70″ fill=»green»/> <use href=»#gfg» x=»110″ y=»320″ id=»useid»></use> <script type=»text/javascript»> var u = document.getElementById(«useid»); console.log(u.y); console.log(u.y.animVal.value) </script> </svg> </body> </html> Producción: Ejemplo 2: HTML <!DOCTYPE html> <html> … Continue reading «Propiedad SVG UseElement.y»