La propiedad SVG EllipseElement.ry Devuelve un objeto SVGAnimatedLength correspondiente al atributo del elemento de elipse dado
Sintaxis:
EllipseElement.ry
Valor de retorno: esta propiedad devuelve el objeto SVGAnimatedLength que se puede usar para obtener el ry del elemento Ellipse
Ejemplo 1:
<!DOCTYPE html> <html> <body> <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="100" cy="100" rx="100" ry="60" id="ellipse" onclick="outputSize();"/> <script> var g = document.getElementById("ellipse"); console.log(g.ry) </script> </svg> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <body> <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="100" cy="100" rx="100" ry="100" id="ellipse" onclick="outputSize();"/> <script> var g = document.getElementById("ellipse"); console.log(g.ry) </script> </svg> </body> </html>
Producción: