La propiedad SVG RectElement.ry se usa para ordenar
Sintaxis:
RectElement.ry
Valor devuelto: esta propiedad devuelve un
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>SVG RectElement.ry property</h3> <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"> <rect width="100" height='190' fill="green" id="gfg" rx=10 ry=30 /> <script> var g = document.getElementById("gfg"); console.log(g.ry) </script> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h1 style="color: green"> GeeksforGeeks </h1> <h3>SVG RectElement.ry property</h3> <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"> <rect width="100" height='190' fill="green" id="gfg" rx=10% ry=35% /> <script> var g = document.getElementById("gfg"); console.log(g.ry) </script> </svg> </body> </html>
Producción: