Skip to content

Instantly share code, notes, and snippets.

@hjelmeir
Created April 6, 2018 07:35
Show Gist options
  • Save hjelmeir/dd4da6cba1be9e4721ae6b34cc07544a to your computer and use it in GitHub Desktop.
Save hjelmeir/dd4da6cba1be9e4721ae6b34cc07544a to your computer and use it in GitHub Desktop.
Using stroke dash and offset to animate a svg line
polyline.animate-line {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: dash 5s linear forwards;
}
@keyframes dash {
to {
stroke-dashoffset: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment