mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
38 lines
717 B
HTML
38 lines
717 B
HTML
<div class="loader">
|
|
<div class="bar" id="red"></div>
|
|
<div class="bar" id="mint"></div>
|
|
<div class="bar" id="grey"></div>
|
|
<div class="bar" id="purple"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by bhaveshxrawat - Tags: loader */
|
|
.loader {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
gap: 5px;
|
|
height: 80px;
|
|
width: 80px;
|
|
}
|
|
|
|
.bar {
|
|
width: 7px;
|
|
height: 50px;
|
|
border-radius: 10em;
|
|
background-image: linear-gradient(60deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
|
|
background-size: 390%;
|
|
animation: live 2s linear infinite;
|
|
}
|
|
|
|
@keyframes live {
|
|
0%, 50%, 100% {
|
|
transform: scaleY(1);
|
|
}
|
|
|
|
30%, 70% {
|
|
background-position: right;
|
|
transform: scaleY(1.15);
|
|
}
|
|
}
|
|
</style>
|