Skip to content

Instantly share code, notes, and snippets.

@dieseltravis
Created December 2, 2025 20:47
Show Gist options
  • Select an option

  • Save dieseltravis/757ba00846ac77d96c26e2d091a8d317 to your computer and use it in GitHub Desktop.

Select an option

Save dieseltravis/757ba00846ac77d96c26e2d091a8d317 to your computer and use it in GitHub Desktop.
animated css loading svg
Display the source blob
Display the rendered blob
Raw
<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