Skip to content

Instantly share code, notes, and snippets.

@IbeVanmeenen
Last active February 15, 2016 14:28
Show Gist options
  • Save IbeVanmeenen/d6fc24e114554243649e to your computer and use it in GitHub Desktop.
Save IbeVanmeenen/d6fc24e114554243649e to your computer and use it in GitHub Desktop.
Blogpost Anata - Handwriting animation with SVG - 6
.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