SVG EllipseElement.ry property
The SVG EllipseElement.ry property Returns an SVGAnimatedLength object corresponding to the attribute of the given ellipse element
Syntax:
EllipseElement.ry
Return value: This property returns SVGAnimatedLength object that can be used get the ry of the Ellipse element
Example 1:
<!DOCTYPE html> < html > < body > < 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 > |
chevron_right
filter_none
Output:
Example 2:
<!DOCTYPE html> < html > < body > < 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 > |
chevron_right
filter_none
Output: