mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
35 lines
603 B
HTML
35 lines
603 B
HTML
<div class="loader">
|
|
<div class="inner_loader"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by benjimich - Tags: loader, color */
|
|
.loader {
|
|
width: 200px;
|
|
height: 10px;
|
|
background: #004643;
|
|
border-radius: 50px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.inner_loader {
|
|
width: 60%;
|
|
height: 100%;
|
|
background: #f9bc60;
|
|
border-radius: 50px;
|
|
animation: moveLeftRight 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes moveLeftRight {
|
|
0% {
|
|
transform: translateX(calc(-100% + 10px));
|
|
}
|
|
|
|
50% {
|
|
transform: translateX(calc(200px - 10px));
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(calc(-100% + 10px));
|
|
}
|
|
}
|
|
</style>
|