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