پیش‌نمایش زنده
کد HTML
<div class="moon">
  <div class="shadow"></div>
</div>
کد CSS
.moon, .shadow {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(216, 216, 216);
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

.shadow {
  width: 50px;
  height: 50px;
  position: relative;
  background: #212121;
 /*Change these color to the bg of your website*/
  transition: all .3s ease;
  animation: move_4123 1.2s infinite alternate ease-in-out;
  transform: translate3d(8px, -8px, 0);
}

@keyframes move_4123 {
  100% {
    transform: translate3d(36px, -36px, 0);
  }
}
نوع: loader
تاریخ ایجاد: 2026/06/06
آخرین بروزرسانی: 2026/06/06