mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
37 lines
631 B
HTML
37 lines
631 B
HTML
<span class="loader"></span>
|
|
<style>
|
|
/* From Uiverse.io by Shoh2008 - Tags: loader */
|
|
.loader {
|
|
display: block;
|
|
width: 84px;
|
|
height: 84px;
|
|
position: relative;
|
|
}
|
|
|
|
.loader:before , .loader:after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 0;
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 50%;
|
|
background: #FFF;
|
|
transform: translate(-50% , -100%) scale(0);
|
|
animation: push_401 2s infinite linear;
|
|
}
|
|
|
|
.loader:after {
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
@keyframes push_401 {
|
|
0% , 50% {
|
|
transform: translate(-50% , 0%) scale(1)
|
|
}
|
|
|
|
100% {
|
|
transform: translate(-50%, -100%) scale(0)
|
|
}
|
|
}
|
|
</style>
|