SVG/Attribut/repeatDur
Aus SELFHTML-Wiki
Das repeatDur-Attribut legt die Dauer aller in repeatCount festgelegten Wiederholungen fest.
- Erlaubte Werte
nichtnegative Zeitangabe
- Standardwert
none
- anwendbar auf
- Präsentationsattribut
nein
- mit CSS animierbar
nein
Beispiel
<circle cx="100" cy="190" r="40" fill="red">
<animate
attributeName="cx"
by="100"
dur="2s"
repeatCount="3"
repeatDur="5s"
accumulate="sum"
fill="freeze" />
</circle>
Während die Dauer 2s beträgt, gilt für die Dauer aller Wiederholungen eine Gesamtdauer für 6s.
Siehe auch
Weblinks
- Spezifikation (W3C): ReapeatDur Attribute
- MDN: repeatDur