--- title: animation-direction slug: Web/CSS/animation-direction translation_of: Web/CSS/animation-direction ---
CSS-свойство animation-direction
определяет, должна ли анимация воспроизводиться вперёд, назад или переменно вперёд и назад.
Также удобно использовать сокращённое свойство {{cssxref("animation")}}, чтобы одновременно установить все свойства анимации.
{{cssinfo}}
/* Одиночная анимация */ animation-direction: normal; animation-direction: reverse; animation-direction: alternate; animation-direction: alternate-reverse; /* Несколько анимаций */ animation-direction: normal, reverse; animation-direction: alternate, reverse, normal; /* Глобальные значения */ animation-direction: inherit; animation-direction: initial; animation-direction: unset;
normal
reverse
alternate
animation-iteration-count
.alternate-reverse
animation-iteration-count
.Смотрите примеры CSS анимаций.
{{Compat("css.properties.animation-direction")}}