Skip to content

Instantly share code, notes, and snippets.

@fxxkscript
Created June 23, 2015 11:48
Show Gist options
  • Select an option

  • Save fxxkscript/3e7c56243db2ffca48d4 to your computer and use it in GitHub Desktop.

Select an option

Save fxxkscript/3e7c56243db2ffca48d4 to your computer and use it in GitHub Desktop.
SVG circle line animation
<svg class="progress-circle" width="260" height="260">
<path d="m35,2.5c17.955803,0 32.5,14.544199 32.5,32.5c0,17.955803 -14.544197,32.5 -32.5,32.5c-17.955803,0 -32.5,-14.544197 -32.5,-32.5c0,-17.955801 14.544197,-32.5 32.5,-32.5z" stroke="#bae7f3" stroke-width="6" fill="transparent"/>
</svg>
@keyframes dash {
from {
stroke-dashoffset: 816;
}
to {
stroke-dashoffset: 0;
}
}
.progress-circle path {
stroke-dasharray: 816;
stroke-dashoffset: 0;
animation: dash 5s linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment