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

CSSではじめ数秒点滅させ、後は通常表示させたいです。

Posted at

お世話になります。

下記コードのように点滅させようとしているのですが、点滅した後にすぐ消えてしまいます。
この点滅設定の後に表示させるようにするにはどのように処理をしたら良いでしょうか?

<div class="light_box"></div>

//widthとheightは別途つけてあります

.light_box{
  opacity: 0;
  animation: flash 0.2s 3 linear;
}

@keyframes flash {
  50% {
      opacity: 1;
  }
}

点滅後の処理について、調べても見つからずご教示頂けると幸いです。
お手数ですがよろしくお願いいたします。

0
1
1

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
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?