| 1 |
<svg width="82.5" height="75" viewBox="0 0 55 50" xmlns="http://www.w3.org/2000/svg"> |
| 2 |
<style> |
| 3 |
@keyframes loadingColorAnimation { |
| 4 |
25% { |
| 5 |
fill: #0091ae; |
| 6 |
} |
| 7 |
75% { |
| 8 |
fill: #0091ae; |
| 9 |
} |
| 10 |
} |
| 11 |
|
| 12 |
@keyframes loadingAnimation { |
| 13 |
0%, 100% { |
| 14 |
transform: translateY(0); |
| 15 |
} |
| 16 |
25% { |
| 17 |
transform: translateY(.25em); |
| 18 |
} |
| 19 |
50% { |
| 20 |
transform: translateY(0); |
| 21 |
} |
| 22 |
75% { |
| 23 |
transform: translateY(-.25em); |
| 24 |
} |
| 25 |
} |
| 26 |
|
| 27 |
circle { |
| 28 |
fill: #f5f8fa; |
| 29 |
animation: loadingAnimation 1s linear infinite, loadingColorAnimation 1s linear infinite; |
| 30 |
} |
| 31 |
|
| 32 |
g circle:nth-child(2) { |
| 33 |
animation-delay: -0.66s; |
| 34 |
} |
| 35 |
|
| 36 |
g circle:nth-child(3) { |
| 37 |
animation-delay: -0.33s; |
| 38 |
} |
| 39 |
</style> |
| 40 |
<g> |
| 41 |
<circle cx="10" cy="25" r="5"></circle> |
| 42 |
<circle cx="25" cy="25" r="5"></circle> |
| 43 |
<circle cx="40" cy="25" r="5"></circle> |
| 44 |
</g> |
| 45 |
</svg> |
| 46 |
|