SVG/Attribut/accumulate
Aus SELFHTML-Wiki
Das accumulate-Attribut legt fest, ob Werte vom Ursprungswert oder vom Ergebnis der vorherigen Animation ausgehen.
- Erlaubte Werte
- none (ersetzt den Urspungswert)
- sum (baut auf der vorherigen Animation auf)
- Standardwert
none
- anwendbar auf
- Präsentationsattribut
nein
- mit CSS animierbar
nein
Beispiel
<circle cx="100" cy="190" r="40" fill="red">
<animate attributeName="cx"
begin="0" dur="1s" by="100"
repeatCount="3"
accumulate="sum"
fill="freeze" />
</circle>
Der Kreis verschiebt sich pro Durchlauf um 100px nach rechts.
Siehe auch
Weblinks
Spezifikation (W3C): accumulate attribute