SVGTextPositioningElement: rotate-Eigenschaft

Die rotate-Eigenschaft der SVGTextPositioningElement-Schnittstelle gibt die Rotation einzelner Textglyphen wieder, wie sie durch das rotate-Attribut des gegebenen Elements spezifiziert ist.

Wert

Beispiele

Angenommen, das folgende SVG:

html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <text x="10" y="20" rotate="45">Hello</text>
  <text x="50" y="50" rotate="90">World</text>
</svg>

Wir können auf das rotate-Attribut zugreifen:

js
const texts = document.querySelectorAll("text");

console.log(texts[0].rotate.baseVal); // output: 45
console.log(texts[1].rotate.baseVal); // output: 90

Spezifikationen

No specification found

No specification data found for api.SVGAnimationElement.rotate.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch