Created
December 2, 2025 20:47
-
-
Save dieseltravis/757ba00846ac77d96c26e2d091a8d317 to your computer and use it in GitHub Desktop.
animated css loading svg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg xmlns="http://www.w3.org/2000/svg" display="block" preserveAspectRatio="xMidYMid" style="background:rgba(255,255,255,0)" viewBox="0 0 10 10"> | |
| <style> | |
| g { | |
| transform-origin: 5px 5px; | |
| animation: 4s linear infinite r; | |
| } | |
| @keyframes r { | |
| to { transform: rotate(360deg); } | |
| } | |
| </style> | |
| <g> | |
| <circle cx="5" cy="5" r="3" fill="none" stroke="#0088CC" stroke-dasharray="10 5" stroke-width="1" /> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment