1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

keyframeアニメーションの前後の状態を維持する

Last updated at Posted at 2016-09-03

animation-fill-modeで設定する

[設定値]
none
アニメーションで指定されたスタイルは、アニメーションの実行前や実行後には適用されない。
forwards
アニメーションの最後に適用されたキーフレームの指定によって計算された値を維持する。
backwards
アニメーションの適用先に、'0%' または 'from' キーフレームで定義された値を即座に適用する。
both
forwards と backwards の両方の規定に従います。よって、アニメーションの設定は実行前と実行後の両方に適用されます。

例:

.hoge{
    animation: keyframename 1s linear 5s  forwards;
}

参考:https://developer.mozilla.org/ja/docs/Web/CSS/animation-fill-mode

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?