mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
70 lines
1.3 KiB
HTML
70 lines
1.3 KiB
HTML
|
|
<section class="loader">
|
|
|
|
<div class="slider" style="--i:0">
|
|
</div>
|
|
<div class="slider" style="--i:1">
|
|
</div>
|
|
<div class="slider" style="--i:2">
|
|
</div>
|
|
<div class="slider" style="--i:3">
|
|
</div>
|
|
<div class="slider" style="--i:4">
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
<style>
|
|
/* From Uiverse.io by Nawsome - Tags: loader */
|
|
.loader {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.slider {
|
|
overflow: hidden;
|
|
background-color: white;
|
|
margin: 0 15px;
|
|
height: 80px;
|
|
width: 20px;
|
|
border-radius: 30px;
|
|
box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1), -15px -15px 30px #fff,
|
|
inset -5px -5px 10px rgba(0, 0, 255, 0.1),
|
|
inset 5px 5px 10px rgba(0, 0, 0, 0.1);
|
|
position: relative;
|
|
}
|
|
|
|
.slider::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 20px;
|
|
width: 20px;
|
|
border-radius: 100%;
|
|
box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.3), 0px 420px 0 400px #2697f3,
|
|
inset 0px 0px 0px rgba(0, 0, 0, 0.1);
|
|
animation: animate_2 2.5s ease-in-out infinite;
|
|
animation-delay: calc(-0.5s * var(--i));
|
|
}
|
|
|
|
@keyframes animate_2 {
|
|
0% {
|
|
transform: translateY(250px);
|
|
filter: hue-rotate(0deg);
|
|
}
|
|
|
|
50% {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(250px);
|
|
filter: hue-rotate(180deg);
|
|
}
|
|
}
|
|
|
|
</style>
|