SVG RectElement.rx Propiedad

La propiedad SVG RectElement.rx se usa para ordenar

Sintaxis:

RectElement.rx

Valores devueltos: esta propiedad devuelve un

Ejemplo 1: 

HTML

<!DOCTYPE html>
<html>
  
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
      
    <h3>SVG RectElement.rx property</h3>
      
    <svg width="300" height="300" 
        xmlns="http://www.w3.org/2000/svg">
  
        <rect width="100" height='190' 
            fill="green" id="gfg" 
            rx=20 ry=10 />
              
        <script>
            var g = document.getElementById("gfg");
            console.log(g.rx)
        </script>
    </svg>
</body>
  
</html>

Producción:

Ejemplo 2: 

HTML

<!DOCTYPE html>
<html>
  
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
  
    <h3>SVG RectElement.rx property</h3>
      
    <svg width="300" height="300" 
        xmlns="http://www.w3.org/2000/svg">
          
        <rect width="100" height='190' 
            fill="green" id="gfg" rx=50% ry=10% />
              
        <script>
            var g = document.getElementById("gfg");
            console.log(g.rx);
        </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 *