@-moz-keyframes pulsate {
from {
-moz-transform: scale(0.01);
opacity: 0;
}
5% {
-moz-transform: scale(0.25);
opacity: 1.0;
}
to {
-moz-transform: scale(1.3);
opacity: 0;
}
}
@-webkit-keyframes pulsate {
from {
-webkit-transform: scale(0.01);
opacity: 0;
}
5% {
-webkit-transform: scale(0.25);
opacity: 1.0;
}
to {
-webkit-transform: scale(1.3);
opacity: 0;
}
}
@keyframes pulsate {
from {
transform: scale(0.01);
-webkit-transform: scale(0.01);
-moz-transform: scale(0.01);
opacity: 0;
}
5% {
opacity: 1.0;
}
to {
transform: scale(1.3);
-webkit-transform: scale(1.3);
-moz-transform: scale(1.3);
opacity: 0;
}
}
.%%MARKERCLASS%% {
-moz-animation: pulsate %%DURATION%%s ease-in-out infinite;
-webkit-animation: pulsate %%DURATION%%s ease-in-out infinite;
animation: pulsate %%DURATION%%s ease-in-out infinite;
border: 1pt solid #fff;
-moz-border-radius: %%RADIUS%%px;
-webkit-border-radius: %%RADIUS%%px;
border-radius: %%RADIUS%%px;
-moz-box-shadow: inset 0 0 %%WEIGHT%%px #%%COLOR%%, inset 0 0 %%WEIGHT%%px #%%COLOR%%, inset 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%;
-webkit-box-shadow: inset 0 0 %%WEIGHT%%px #%%COLOR%%, inset 0 0 %%WEIGHT%%px #%%COLOR%%, inset 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%;
box-shadow: inset 0 0 %%WEIGHT%%px #%%COLOR%%, inset 0 0 %%WEIGHT%%px #%%COLOR%%, inset 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%, 0 0 %%WEIGHT%%px #%%COLOR%%;
height: %%RADIUS%%px !important;
width: %%RADIUS%%px !important;
margin: %%POSITIONTOP%%px 0 0 %%POSITIONLEFT%%px;
}