mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
31 lines
516 B
HTML
31 lines
516 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by gagan-gv - Tags: loader */
|
|
.loader {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: #4285f4;
|
|
border-radius: 10%;
|
|
animation: dice3 7s ease-in-out infinite;
|
|
filter: drop-shadow(2px 3px 40px #444);
|
|
}
|
|
|
|
@keyframes dice3 {
|
|
from, to {
|
|
transform: translateX(-50px) rotateX(0deg);
|
|
}
|
|
|
|
25% {
|
|
background: #db4437;
|
|
}
|
|
|
|
50% {
|
|
background: #f4b400;
|
|
transform: translateX(50px) rotate(360deg);
|
|
}
|
|
|
|
75% {
|
|
background: #0f9d58;
|
|
}
|
|
}
|
|
</style>
|