SVG/Attribut/attributeName

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

attributeName legt fest, welche Eigenschaft animiert werden soll.

Erlaubte Werte

CDATA (Name des zu animierenden Attributs)

Standardwert
anwendbar auf
Präsentationsattribut

nein

mit CSS animierbar

nein

Beispiel
<circle cx="500" cy="100" r="50" fill="#5a9900">
  <animate 
    attributeName="r"
    begin="1s" dur="2s" from="0" to="50"
    additive="sum"
    fill="freeze"/>
</circle>
Das r-Attribut, das den Radius festlegt, bekommt pro Animation einen um 50 erhöhten Wert.

Siehe auch

Weblinks

Spezifikation (W3C): attributeName