SVG/Attribut/from
Aus SELFHTML-Wiki
Das from-Attribut legt den Ausgangswert 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="150"
to= "250"
dur="3s"
fill="freeze"/>
</rect>
Der Ausgangswert des height-Attributs ist 150, dies wird als Basis für die Animation verwendet
Siehe auch
Weblinks
- Spezifikation (W3C): From attribute
- MDN from