A Pen by Graham F. Scott on CodePen.
Created
June 5, 2017 20:53
-
-
Save gfscott/776d126b942a56f4c0a985339d3d0a74 to your computer and use it in GitHub Desktop.
SVG Dash Stroke Offset Animation Test
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
<div class="c"> | |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"> | |
<path class="trace" fill="transparent" stroke="red" stroke-width="4" d="M21 25s91-15 121 17-77 78-77 78 141 2 97 27 24 32 24 32"/> | |
</svg> | |
</div> |
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
div.c { | |
width: 200px; | |
height: 200px; | |
margin: 0 auto; | |
} | |
path.trace { | |
stroke-dasharray: 600; | |
animation: indy 5s linear reverse infinite; | |
} | |
@keyframes indy { | |
0% { | |
stroke-dashoffset: 0; | |
} | |
100% { | |
stroke-dashoffset: 1000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment