Created
June 23, 2015 11:48
-
-
Save fxxkscript/3e7c56243db2ffca48d4 to your computer and use it in GitHub Desktop.
SVG circle line animation
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 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> |
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
| @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