--- title: animation-direction slug: Web/CSS/animation-direction tags: - CSS - CSS Animationen - CSS Eigenschaft - Experimentell - Layout - Referenz - Web translation_of: Web/CSS/animation-direction ---
Die animation-direction
CSS Eigenschaft gibt an, ob die Animation rückwärts oder in Wechelzyklen abgespielt werden soll.
Es ist oft einfacher, die Kurzschreibweise {{cssxref("animation")}} zu verwenden, um alle Animationseigenschaften auf einmal zu setzen.
{{cssinfo}}
/* Einzelne Animation */ animation-direction: normal; animation-direction: reverse; animation-direction: alternate; animation-direction: alternate-reverse; /* Mehrere Animationen */ animation-direction: normal, reverse; animation-direction: alternate, reverse, normal; /* Globale Werte */ animation-direction: inherit; animation-direction: initial; animation-direction: unset;
normal
alternate
ease-in
Animation durch eine ease-out
Animation ersetzt, wenn sie rückwärts abgespielt wird. Die Zählung zur Bestimmung, ob es sich um eine gerade oder ungerade Iteration handelt, beginnt bei eins.reverse
alternate-reverse
Siehe CSS Animationen für Beispiele.
Spezifikation | Status | Kommentar |
---|---|---|
{{SpecName('CSS3 Animations', '#animation-direction', 'animation-direction')}} | {{Spec2('CSS3 Animations')}} | For the two new values, see the W3C discussion. |
{{Compat("css.properties.animation-direction")}}