Css animation とは
キーフレームアニメーションを適用できる機能です。
利用できるプロパティは、9個あります。
- animation
- animation-name
- animation-duration
- animation-timing-function
- animation-delay
- animation-iteration-count
- animation-direction
- animation-fill-mode
- animation-play-state
duration : デュレイション
間隔
delay : ディレイ
先延ばしにする
iteration : イテレーション
反復
direction : ディレクション
方向
fill : フィル
いっぱいにする
state : ステート
状態、状況、国
プロパティ | 内容 |
---|---|
animation-name | 利用するキーフレームの名前 |
animation-duration | アニメーションが終わるまでにかかる時間 |
animation-timing-function | アニメーションの速度 |
animation-delay | アニメーションを何秒後に開始するか |
animation-iteration-count | アニメーションを何回再生するか |
animation-direction | アニメーションを再生する方向 |
animation-fill-mode | アニメーションの再生前後のスタイルを指定 |
animation-play-state | アニメーションを再生中か、一時停止かを指定 |