Created
October 15, 2023 20:37
-
-
Save LC43/e9927cb5fcf23c69a989a6d5407f39f0 to your computer and use it in GitHub Desktop.
geomaps animated markers - 2 colors, slow
This file contains hidden or 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: 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