SVG/Attribut/lengthAdjust

Aus SELFHTML-Wiki
< SVG‎ | Attribut
Wechseln zu: Navigation, Suche

Das lengthAdjust-Attribut legt fest, wie der Text auf die durch das textLength-Attribut definierte Länge gestreckt oder gestaucht wird.

Erlaubte Werte

spacing, spacingAndGlyphs

Standardwert

spacing

anwendbar auf
Präsentationsattribut

nein

mit CSS animierbar

ja

Beispiel
<text x="0" y="20" textLength="300" lengthAdjust="spacing">
      Stretched using spacing only.
</text>
<text x="0" y="50" textLength="300" lengthAdjust="spacingAndGlyphs">
      Stretched using spacing and glyphs.
</text>
<text x="0" y="80" textLength="100" lengthAdjust="spacing">
      Shrunk using spacing only.
</text>
<text x="0" y="110" textLength="100" lengthAdjust="spacingAndGlyphs">
      Shrunk using spacing and glyphs.
</text>


Siehe auch

Weblinks