0
0

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 3 years have passed since last update.

フェードインしてくる文字の表示

Posted at

ページにアクセスした時に特定の文字がフェードインしてくるcssの記述です。translate3d(0,-100%,0);の部分はy軸に-100%移動するという意味です。

style.css
h1 {
  visibility: visible;
  animation: fadeInDown 1s ease 0.5s 1 normal;
  -webkit-animation: fadeInDown 1s ease 0.5s 1 normal;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0,-100%,0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0,-100%,0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?