mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
616 B
HTML
23 lines
616 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by Rodrypaladin - Tags: animation, red, loading, loader, modern, creative, multicolor, bounce animation */
|
|
.loader {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: orange;
|
|
border-radius: 50%;
|
|
box-shadow: -15px -15px 15px #ff6600, 15px -15px 15px #ff9100, 15px 15px 15px #ff5500, -15px 15px 15px #ffa600, -15px 0 15px #ff6600, 15px 0 15px #ffcc00;
|
|
animation: rotate 1s infinite;
|
|
transform: rotate(0) scale(0.8);
|
|
}
|
|
|
|
@keyframes rotate {
|
|
0% {
|
|
transform: rotate(360deg) scale(0.8);
|
|
}
|
|
|
|
50% {
|
|
transform: rotate(0) scale(1.2);
|
|
}
|
|
}
|
|
</style>
|