Skip to content

Instantly share code, notes, and snippets.

@LC43
Created October 15, 2023 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LC43/e9927cb5fcf23c69a989a6d5407f39f0 to your computer and use it in GitHub Desktop.
Save LC43/e9927cb5fcf23c69a989a6d5407f39f0 to your computer and use it in GitHub Desktop.
geomaps animated markers - 2 colors, slow
.imapsCircle {
paint-order: stroke;
stroke-opacity:1;
stroke: blue; /* change with the stroke color you want */
animation: pulse-me 4s linear infinite;
}
@keyframes pulse-me {
0% {
stroke-opacity: 0;
stroke-width:0px;
}
25% {
stroke: blue;
stroke-opacity: 1;
stroke-width:25px;
}
50% {
stroke-opacity: 0;
stroke-width:0px;
}
100% {
stroke: red;
stroke-opacity: 1;
stroke-width:25px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment