Propiedad SVG LineElement.y1

La propiedad SVG LineElement.y1 e

Sintaxis:

LineElement.y1

Valor devuelto: Esta propiedad vuelve a

Ejemplo 1: 

HTML

<!DOCTYPE html>
<html>
  
<body>
    <svg width="350" height="350" 
        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.y1)
        </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="10" x2="100" y1="100" 
            y2="150" id="gfg" stroke="green" />
  
        <script>
            var g = document.getElementById("gfg");
            console.log(g.y1)
        </script>
    </svg>
</body>
  
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *