mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
532 B
HTML
20 lines
532 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by Bodyhc - Tags: loader, car loader, 3d loader, 3d cude loader */
|
|
.loader {
|
|
width: calc(90px / 0.707);
|
|
height: 20px;
|
|
background: repeating-linear-gradient(135deg, #766DF4 0 15px,#0000 0 20px) left top,
|
|
repeating-linear-gradient( 45deg, #766DF4 0 15px,#0000 0 20px) left bottom;
|
|
background-size: 300% 50%;
|
|
background-repeat: no-repeat;
|
|
animation: i4 2s infinite linear;
|
|
}
|
|
|
|
@keyframes i4 {
|
|
100% {
|
|
background-position: top right,bottom right
|
|
}
|
|
}
|
|
|
|
</style>
|