--- title: animation-direction slug: Web/CSS/animation-direction tags: - CSS - CSS Animations - CSS Property - CSS アニメーション - CSS プロパティ - Reference translation_of: Web/CSS/animation-direction ---
CSS の animation-direction
プロパティは、アニメーション再生の向きを順方向、逆方向、前後反転のいずれにするかを設定します。
このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 https://github.com/mdn/interactive-examples をクローンしてプルリクエストを送信してください。
アニメーションのプロパティすべてを一度に設定するには、一括指定プロパティである {{cssxref("animation")}} プロパティを使用すると便利です。
/* 単一のアニメーション */ 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
ease-in
が ease-out
になります。alternate
alternate-reverse
メモ: animation-*
プロパティにコンマ区切りで複数の値を指定した場合、 {{cssxref("animation-name")}} プロパティで指定したアニメーションに割り当てられますが、いくつあるかによって異なる方法で割り当てられます。詳しくは、複数のアニメーションプロパティ値の設定 を参照してください。
CSS アニメーションを参照してください。
{{cssinfo}}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('CSS3 Animations', '#animation-direction', 'animation-direction')}} | {{Spec2('CSS3 Animations')}} | 初回定義。 |
{{Compat("css.properties.animation-direction")}}