Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Created November 28, 2022 23:10
Embed
What would you like to do?
pulsating markers effect with css - interactive geo maps
.imapsCircle {
paint-order: stroke;
stroke-opacity:1;
stroke: #dd9933; /* change with the stroke color you want */
animation: pulse-me 1s linear infinite;
}
@keyframes pulse-me {
0% {
stroke-opacity: 0.9;
stroke-width:0px;
}
100% {
stroke-opacity: 0;
stroke-width:25px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment