پیش‌نمایش زنده
کد HTML
<div class="spinner">
  <div class="inner">
  </div>
</div>
کد CSS
.spinner {
 width: 40px;
 height: 40px;
 border-radius: 100%;
 background-color: aqua;
 display: grid;
 place-items: center;
 animation: zoomin 1.5s infinite alternate-reverse;
 position: relative;
}

.inner {
 background-color: #212121;
 width: 80%;
 height: 80%;
 border-radius: 100%;
}

@keyframes zoomin {
 0% {
  transform: scale(1);
  box-shadow: 0 0 100px 20px rgb(16, 71, 71);
 }

 100% {
  transform: scale(1.5);
  box-shadow: 0 0 100px 20px #000;
 }
}
نوع: loader
تاریخ ایجاد: 2026/06/06
آخرین بروزرسانی: 2026/06/06