--- title: animation-play-state slug: Web/CSS/animation-play-state tags: - CSS - CSS Animationen - CSS Eigenschaft - Experimentell - Layout - Referenz - Web translation_of: Web/CSS/animation-play-state ---
Die animation-play-state
CSS Eigenschaft bestimmt, ob eine Animation abläuft oder pausiert ist. Der Wert dieser Eigenschaft kann abgefragt werden, um festzustellen, ob die Animation gerade abläuft oder nicht; darüber hinaus kann der Wert auch gesetzt werden, um die das Abspielen der Animation anzuhalten und fortzusetzen.
Wenn eine pausierte Animation fortgesetzt wird, wird sie dort gestartet, wo sie angehalten wurde, nicht vom Anfang der Animationssequenz.
{{cssinfo}}
/* Einzelne Animation */ animation-play-state: running; animation-play-state: paused; /* Mehrere Animationen */ animation-play-state: paused, running, running; /* Globale Werte */ animation-play-state: inherit; animation-play-state: initial; animation-play-state: unset;
running
paused
{{csssyntax}}
Siehe CSS Animationen für Beispiele.
Spezifikation | Status | Anmerkung |
---|---|---|
{{SpecName('CSS3 Animations', '#animation-play-state', 'animation-play-state')}} | {{Spec2('CSS3 Animations')}} | Ursprüngliche Definition |
{{Compat("css.properties.animation-play-state")}}