Back
Loader
1 2<div class="preloader">3 <div class="crack crack1"></div>4 <div class="crack crack2"></div>5 <div class="crack crack3"></div>6 <div class="crack crack4"></div>7 <div class="crack crack5"></div>8</div>
1 2.preloader { 3 position: relative; 4 width: 100%; 5 height: 100%; 6 display: flex; 7 align-items: center; 8 justify-content: center; 9 filter: drop-shadow(0 0 2px #fff);10}11 12.crack {13 position: absolute;14 width: 10%;15 aspect-ratio: 1;16 background-color: #fef3fc;17 clip-path: polygon(18 50% 0%,19 61% 35%,20 98% 35%,21 68% 57%,22 79% 91%,23 50% 70%,24 21% 91%,25 32% 57%,26 2% 35%,27 39% 35%28 );29 animation: rotate 6s infinite;30}31 32.crack2 {33 width: 12%;34 animation-delay: 1s;35}36.crack3 {37 width: 14%;38 animation-delay: 1.5s;39}40.crack4 {41 width: 16%;42 animation-delay: 2s;43}44.crack5 {45 width: 18%;46 animation-delay: 2.5s;47}48 49@keyframes rotate {50 to {51 rotate: 360deg;52 }53}
MIT License