mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
18 lines
710 B
HTML
18 lines
710 B
HTML
<div class="spinner">
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="200" height="200" fill="none">
|
|
<path stroke="#E91E63" stroke-width="1.5" d="M9.743 10.25c3.213 1.96 5.017 4.676 7.248 4.676 2.588 0 2.791-4.8.518-5.668-3.107-1.187-5.178 3.719-8.284 5.03-1.415.677-3.41 1.014-4.09-1.14-.251-.797-.13-1.65.133-2.442v0c.425-1.278 2.132-1.66 3.35-1.081.304.144.668.346 1.125.625z" stroke-dashoffset="100" stroke-dasharray="100" class="path">
|
|
</path>
|
|
</svg>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by fanishah - Tags: loader */
|
|
.spinner .path {
|
|
animation: infinity-load 1.5s infinite cubic-bezier(.65,.05,.36,1)
|
|
}
|
|
|
|
@keyframes infinity-load {
|
|
to {
|
|
stroke-dashoffset: 10
|
|
}
|
|
}
|
|
</style>
|