The SVGCircleElement
interface is an interface for the <circle>
element. The circle element is defined by the cx and cy attributes that denote the coordinates of the centre of the circle. It also has a radius attribute r that denotes the radius of the circle. The radius value must be positive to allow the successful rendering of the element.
The SVGCircleElement
interface is read-only, which means that any attempt to modify the object will raise an exception.
This interface also inherits properties from its parent, SVGGeometryElement
.
SVGCircleElement.cx
Read only
This property defines the x-coordinate of the center of the circle element. It is denoted by the cx
attribute of the <circle>
element. If unspecified, the value of this attribute is assumed to be 0
.
It can be animated by SVG's animation elements.
SVGCircleElement.cy
Read only
This property defines the y-coordinate of the center of the circle element. It is denoted by the cy
attribute of the <circle>
element. If unspecified, the value of this attribute is assumed to be 0
.
It can be animated by SVG's animation elements.
SVGCircleElement.r
Read only
This property defines the radius of the circle element. It is denoted by the r
of the <circle>
element. A negative value gives an error, while 0
disables the rendering of the element.
It can be animated by SVG's animation elements.
This interface has no methods but inherits methods from its parent, SVGGeometryElement
.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"> <circle cx="100" cy="100" r="50" fill="gold" id="circle" onclick="clickCircle();"/> </svg>
This function clickCircle()
is called when the circle is clicked. It randomly increases or decreases the radius of the circle element.
function clickCircle() { var circle = document.getElementById("circle"); // Randomly determine if the circle radius will increase or decrease var change = Math.random() > 0.5 ? 10 : -10; circle.setAttribute("r", circle.r.baseVal.value + change); }
Click on the circle.
Specification | Status | Comment |
Scalable Vector Graphics (SVG) 2 The definition of 'SVGCircleElement' in that specification. | Candidate Recommendation | Replaced the inheritance from SVGElement , SVGTests , SVGLangSpace , SVGExternalResourcesRequired , SVGStylable , and SVGTransformable by SVGGeometryElement
|
Scalable Vector Graphics (SVG) 1.1 (Second Edition) The definition of 'SVGCircleElement' in that specification. | Recommendation | Initial definition |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 1.0 | (Yes) | 1.5 (1.8) | 9.0 | 8.0 | 3.0.4 |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 3.0 | (Yes) | 1.0 (1.8) | No support | (Yes) | 3.0.4 |
<circle>
SVG element
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement