SVG/Attribut/min

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

Das min-Attribut legt eine minimale Ablaufdauer fest.

Erlaubte Werte
Standardwert

0

anwendbar auf
Präsentationsattribut

nein

mit CSS animierbar

nein

Beispiel
<circle cx="100" cy="190" r="40" fill="red">
  <circle cx="60" cy="10" r="10">
    <animate attributeName="cx" dur="8s" min="6s" repeatCount="indefinite"
        values="60 ; 110 ; 80 ; 60" keyTimes="0 ; 0.25 ; 0.5 ; 1"/>
    <animate attributeName="cy" dur="8s" min="6s" repeatCount="indefinite"
        values="10 ; 60 ; 110 ; 10" keyTimes="0 ; 0.25 ; 0.5 ; 1"/>
  </circle>


Siehe auch

Weblinks