mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
51 lines
777 B
HTML
51 lines
777 B
HTML
<div class="loader">
|
|
<div class="loader-small"></div>
|
|
<div class="loader-large"></div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by gharsh11032000 - Tags: */
|
|
.loader {
|
|
position: relative;
|
|
width: 70px;
|
|
height: 70px;
|
|
}
|
|
|
|
.loader-large {
|
|
position: absolute;
|
|
inset: 0;
|
|
margin: auto;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #D4ADFC;
|
|
border-radius: 10px;
|
|
animation: loading 2s infinite;
|
|
}
|
|
|
|
.loader-small {
|
|
position: absolute;
|
|
width: 50%;
|
|
height: 50%;
|
|
inset: 0;
|
|
margin: auto;
|
|
background-color: #5C469C;
|
|
z-index: 2;
|
|
border-radius: 6px;
|
|
animation: loading 2s infinite reverse;
|
|
}
|
|
|
|
@keyframes loading {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
50% {
|
|
transform: rotateY(180deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotateX(180deg);
|
|
}
|
|
}
|
|
|
|
</style>
|