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