mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
24 lines
430 B
HTML
24 lines
430 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by Shoh2008 - Tags: loader */
|
|
.loader {
|
|
width: 48px;
|
|
height: 48px;
|
|
display: inline-block;
|
|
position: relative;
|
|
background: #FFF;
|
|
box-sizing: border-box;
|
|
animation: zeroRotation 1s ease infinite alternate-reverse;
|
|
}
|
|
|
|
@keyframes zeroRotation {
|
|
0% {
|
|
transform: scale(1) rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(0.3) rotate(360deg);
|
|
}
|
|
}
|
|
|
|
</style>
|