La propiedad SVG LineElement.x1 devuelve un objeto SVGAnimatedLength correspondiente al atributo del elemento de línea dado.
Sintaxis:
LineElement.x1
Valor de retorno: esta propiedad devuelve el objeto SVGAnimatedLength que se puede usar para obtener el «x1» del elemento de línea.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <svg width="350" height="350" xmlns="http://www.w3.org/2000/svg"> <line x1="10" x2="150" y1="10" y2="150" id="gfg" stroke="green" /> <script> var g = document.getElementById("gfg"); console.log(g.x1); </script> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <svg width="350" height="350" xmlns="http://www.w3.org/2000/svg"> <line x1="100" x2="150" y1="10" y2="150" id="gfg" stroke="green" /> <script> var g = document.getElementById("gfg"); console.log(g.x1) </script> </svg> </body> </html>
Producción: