SVG/Attribut/to
Aus SELFHTML-Wiki
Das to-Attribut legt den Endwert des zu animierenden Attributs fest.
- Erlaubte Werte
- Standardwert
none
- anwendbar auf
- Präsentationsattribut
nein
- mit CSS animierbar
nein
Beispiel
<rect x="10" y="10" width="100" height="100">
<animate
attributeName="height"
from="100" to="150"
dur="3s"
fill="freeze"/>
</rect>
Der Endwert des height-Attributs beträgt 150(px).
Siehe auch
Weblinks
- Spezifikation (W3C): To attribute
- MDN to