LoginSignup
1
4

More than 5 years have passed since last update.

【CSSアニメーション】CSSで読み込み時にフェードイン

Last updated at Posted at 2018-01-26

内容

CSSのみでアニメーションするスニペットです。
CSS記述のみで読み込み時にフェードインします。

コード

body {
    animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

デモ

See the Pen CSS fadein by harumi-sato (@harumi-sato) on CodePen.

参考サイト

CSS だけで Web ページのフェードイン表示を実装する方法 | q-Az
https://q-az.net/fadein-open-only-css/

1
4
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
4