loading-anim.module.css13 lines · main
| 1 | .loading path { |
| 2 | stroke-dasharray: 30 220; |
| 3 | animation: dash 1.15s cubic-bezier(0.39, 0.29, 0.5, 0.59) infinite both; |
| 4 | } |
| 5 | |
| 6 | @keyframes dash { |
| 7 | from { |
| 8 | stroke-dashoffset: 52; |
| 9 | } |
| 10 | to { |
| 11 | stroke-dashoffset: 280; |
| 12 | } |
| 13 | } |