mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
52 lines
806 B
HTML
52 lines
806 B
HTML
<div class="spinner">
|
|
<div class="dot1"></div>
|
|
<div class="dot2"></div>
|
|
<div class="dot3"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Mike11jr - Tags: loader */
|
|
.spinner {
|
|
flex-direction: row;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.dot1, .dot2, .dot3 {
|
|
width: 15px;
|
|
height: 15px;
|
|
border: double;
|
|
border-color: white;
|
|
border-radius: 50%;
|
|
margin: 10px;
|
|
}
|
|
|
|
.dot1 {
|
|
animation: jump765 1.6s -0.32s linear infinite;
|
|
background: #2495ff;
|
|
}
|
|
|
|
.dot2 {
|
|
animation: jump765 1.6s -0.16s linear infinite;
|
|
background: #2495ff;
|
|
}
|
|
|
|
.dot3 {
|
|
animation: jump765 1.6s linear infinite;
|
|
background: #2495ff;
|
|
}
|
|
|
|
@keyframes jump765 {
|
|
0%, 80%, 100% {
|
|
-webkit-transform: scale(0);
|
|
transform: scale(0);
|
|
}
|
|
|
|
40% {
|
|
-webkit-transform: scale(2.0);
|
|
transform: scale(2.0);
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|