Spaces:
Sleeping
Sleeping
File size: 760 Bytes
458ecfb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
.loading99 {
margin: 20px;
position: relative;
width: 1px;
height: 1px;
}
.loading99:before,
.loading99:after {
position: absolute;
display: inline-block;
width: 15px;
height: 15px;
content: '';
border-radius: 100%;
background-color: #5551ff;
}
.loading99:before {
left: -15px;
animation: ball-pulse infinite 0.75s -0.4s cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.loading99:after {
right: -15px;
animation: ball-pulse infinite 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
@keyframes ball-pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(0.1);
opacity: 0.6;
}
100% {
transform: scale(1);
opacity: 1;
}
}
|