pulsating markers effect with css - interactive geo maps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.imapsCircle { | |
paint-order: stroke; | |
stroke-opacity:1; | |
stroke: #dd9933; /* change with the stroke color you want */ | |
animation: pulse-me 1s linear infinite; | |
} | |
/* or target by colour */ | |
.imapsCircle-group[fill="#1e73be"] .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