SVGCircleElement: r-Eigenschaft
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Die r
Leseeigenschaft des SVGCircleElement
-Interfaces spiegelt das r
-Attribut eines <circle>
-Elements wider und definiert damit den Radius des Kreises.
Wenn nicht angegeben, entspricht die Wirkung dem Setzen des Wertes auf 0
.
Wert
Ein SVGAnimatedLength
, das den Radius des Kreises darstellt.
Beispiele
SVG
html
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 100 100"
width="200"
height="200">
<circle r="50" r="50" r="50" fill="gold" id="circle" />
</svg>
JavaScript
js
const circle = document.getElementById("circle");
console.log(circle.r);
Spezifikationen
Specification |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGCircleElement__r |
Browser-Kompatibilität
BCD tables only load in the browser