Baseline Widely available
The getRotationOfChar()
method of the SVGTextContentElement
interface the represents the rotation of a typographic character.
index
An integer
; the index of the character.
A float; the rotation angle of the character in degrees.
ExceptionsIndexSizeError
DOMException
Thrown if no character is found at index
.
<svg width="200" height="100">
<text id="exampleText" x="10" y="40" writing-mode="vertical-rl">
Hello, SVG
</text>
</svg>
const textElement = document.getElementById("exampleText");
// Get the rotation of the first character "H"
const rotation = textElement.getRotationOfChar(0);
console.log(extent); // Output: 90
Specifications Browser compatibility See also
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