Format:MapCoords
Versiunea din 16 august 2024 23:18, autor: Arkan (Discuție | contribuții)
<style>
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.5);
opacity: 0.5;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.animated-point {
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
position: absolute;
animation: pulse 1.5s infinite;
}
</style>
<img src="{{{image}}}" alt="Annotated Image" style="width:100%; height:auto;">