پیشنمایش زنده
کد HTML
<div class="loader"></div>
کد CSS
/*View in dark mode for good effects*/
.loader {
border: 4px solid red;
width: 100px;
height: 100px;
border-radius: 50%;
border-right-color: transparent;
animation: rot 1s linear infinite;
box-shadow: 0px 0px 20px red inset;
}
@keyframes rot {
100% {
transform: rotate(360deg);
}
}