Created
May 10, 2015 08:42
-
-
Save richard512/d1194fb99d9a5256d3e8 to your computer and use it in GitHub Desktop.
SVG Text Stroke Animation Via CSS. Demo: http://jsbin.com/fekigigeli
This file contains 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 width="500" height="150"> | |
<text x="100" y="80" fill="none" stroke="black" stroke-width="1" font-size="50">Loading...</text> | |
</svg> | |
<style> | |
text { | |
font-family: sans-serif; | |
stroke-dasharray: 100%; | |
stroke-dashoffset: 100%; | |
-webkit-animation: draw 5s forwards; | |
-moz-animation: draw 5s forwards; | |
-o-animation: draw 5s forwards; | |
-ms-animation: draw 5s forwards; | |
animation: draw 3s forwards; | |
-webkit-animation-iteration-count: infinite; | |
animation-iteration-count: infinite; | |
} | |
@-webkit-keyframes draw { | |
100% { | |
stroke-dashoffset: 0; | |
} | |
} | |
@-moz-keyframes draw { | |
100% { | |
stroke-dashoffset: 0; | |
} | |
} | |
@-o-keyframes draw { | |
100% { | |
stroke-dashoffset: 0; | |
} | |
} | |
@-ms-keyframes draw { | |
100% { | |
stroke-dashoffset: 0; | |
} | |
} | |
@keyframes draw { | |
100% { | |
stroke-dashoffset: 0; | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment