mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
34 lines
496 B
HTML
34 lines
496 B
HTML
<div class="loader">
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
<div class="box"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by satyamchaudharydev - Tags: loader */
|
|
.loader {
|
|
--size: 40px;
|
|
display: flex;
|
|
gap: 0.6rem;
|
|
}
|
|
|
|
.box {
|
|
width: var(--size);
|
|
height: var(--size);
|
|
background: #0270e1;
|
|
animation: rotate 2s infinite;
|
|
}
|
|
|
|
.box:nth-child(2) {
|
|
animation-delay: 0.25s;
|
|
}
|
|
|
|
.box:nth-child(3) {
|
|
animation-delay: 0.5s;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
50% {
|
|
transform: rotate(180deg)
|
|
}
|
|
}
|
|
</style>
|