Baseline Widely available
Die rotate
schreibgeschützte Eigenschaft der SVGTextPositioningElement
-Schnittstelle spiegelt die Rotation einzelner Textglyphen wider, wie sie durch das rotate
-Attribut des angegebenen Elements festgelegt wird.
Ein SVGAnimatedNumberList
-Objekt.
Für das folgende SVG:
<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>
Können wir auf das rotate
-Attribut zugreifen:
const texts = document.querySelectorAll("text");
console.log(texts[0].rotate.baseVal); // output: 45
console.log(texts[1].rotate.baseVal); // output: 90
Spezifikationen Browser-Kompatibilität Siehe auch MDN-Feedback-Box War diese Ãbersetzung hilfreich?
Diese Seite wurde automatisch aus dem Englischen übersetzt.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4