Last active
February 15, 2016 14:28
-
-
Save IbeVanmeenen/d6fc24e114554243649e to your computer and use it in GitHub Desktop.
Blogpost Anata - Handwriting animation with SVG - 6
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
.anata-path--a-1, .anata-path--n-1 { | |
stroke-dasharray: 2600; | |
stroke-dashoffset: 2600; | |
stroke-width: 40; | |
animation: letter-animation 1.5s linear forwards; | |
} | |
.anata-path--n-1 { | |
animation-delay: .8s; | |
} | |
... | |
@keyframes letter-animation { | |
0% { | |
stroke-dashoffset: 2600; | |
} | |
100% { | |
stroke-dashoffset: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment