La propiedad SVG LineElement.x2 se utiliza para re
Sintaxis:
LineElement.x2
Valor devuelto: esta propiedad devuelve un
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>SVG LineElement.x2 property</h3> <svg width="300" height="200" xmlns="http://www.w3.org/2000/svg"> <line x1="10" x2="100" y1="10" y2="150" id="gfg" stroke="green" /> <script> var g = document.getElementById("gfg"); console.log(g.x2) </script> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>SVG LineElement.x2 property</h3> <svg width="300" height="200" xmlns="http://www.w3.org/2000/svg"> <line x1="10%" x2="75%" y1="10%" y2="25%" id="gfg" stroke="green" /> <script> var g = document.getElementById("gfg"); console.log(g.x2) </script> </svg> </body> </html>
Producción: