LoginSignup
4
6

More than 5 years have passed since last update.

【css】アニメーションする円形レーダー

Posted at

位置情報を地図上に表示する際に作成したものを記載します!

See the Pen OvmjWV by sjnya (@sjnya) on CodePen.

.point {
  width: 40px;
  height: 40px;
  background: rgba(25, 118, 210, 0.4);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite none;
}
@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 118, 210, 0.4);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(187, 222, 251, 0.3);
  }
}
4
6
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
4
6