Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Created January 20, 2022 12:30
Show Gist options
  • Save carmoreira/832f55a3b21f329749186649de06c4a0 to your computer and use it in GitHub Desktop.
Save carmoreira/832f55a3b21f329749186649de06c4a0 to your computer and use it in GitHub Desktop.
Animate Dashed Lines - Infinite Loop - Interactive Geo Maps
.imapsMapLine-group path {
stroke-dasharray: 10;
stroke-dashoffset: 100;
animation: dash 5s linear infinite;
}
@keyframes dash {
from {
stroke-dashoffset: 100;
}
to {
stroke-dashoffset: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment