Format:MapCoords: Diferență între versiuni
[versiune verificată] | [versiune verificată] |
Cerro (Discuție | contribuții) |
Arkan (Discuție | contribuții) |
||
Linia 1: | Linia 1: | ||
− | <div | + | <!-- Format:MapCoords --> |
− | <img src="{{{ | + | <style> |
− | {{#if: {{{ | + | @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> | ||
+ | |||
+ | <div style="position: relative; display: inline-block;"> | ||
+ | <img src="{{{image}}}" alt="Annotated Image" style="width:100%; height:auto;"> | ||
+ | |||
+ | <!-- Point 1 --> | ||
+ | {{#if: {{{x1|}}}{{{y1|}}} | | ||
+ | <div class="animated-point" style="top: {{{y1}}}px; left: {{{x1}}}px;"></div> | ||
+ | }} | ||
− | < | + | <!-- Point 2 --> |
− | + | {{#if: {{{x2|}}}{{{y2|}}} | | |
− | < | + | <div class="animated-point" style="top: {{{y2}}}px; left: {{{x2}}}px;"></div> |
− | + | }} | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | < | + | <!-- Point 3 --> |
− | + | {{#if: {{{x3|}}}{{{y3|}}} | | |
− | + | <div class="animated-point" style="top: {{{y3}}}px; left: {{{x3}}}px;"></div> | |
− | + | }} | |
− | |||
− | |||
− | } | ||
− | + | <!-- Point 4 --> | |
− | + | {{#if: {{{x4|}}}{{{y4|}}} | | |
− | + | <div class="animated-point" style="top: {{{y4}}}px; left: {{{x4}}}px;"></div> | |
− | + | }} | |
− | |||
− | |||
− | |||
− | } | ||
− | |||
− | < | + | <!-- Point 5 --> |
− | + | {{#if: {{{x5|}}}{{{y5|}}} | | |
− | + | <div class="animated-point" style="top: {{{y5}}}px; left: {{{x5}}}px;"></div> | |
− | + | }} | |
− | |||
− | + | <!-- Point 6 --> | |
− | + | {{#if: {{{x6|}}}{{{y6|}}} | | |
+ | <div class="animated-point" style="top: {{{y6}}}px; left: {{{x6}}}px;"></div> | ||
+ | }} | ||
− | + | <!-- Point 7 --> | |
− | + | {{#if: {{{x7|}}}{{{y7|}}} | | |
+ | <div class="animated-point" style="top: {{{y7}}}px; left: {{{x7}}}px;"></div> | ||
+ | }} | ||
− | + | <!-- Point 8 --> | |
− | + | {{#if: {{{x8|}}}{{{y8|}}} | | |
− | + | <div class="animated-point" style="top: {{{y8}}}px; left: {{{x8}}}px;"></div> | |
+ | }} | ||
− | + | <!-- Point 9 --> | |
− | + | {{#if: {{{x9|}}}{{{y9|}}} | | |
+ | <div class="animated-point" style="top: {{{y9}}}px; left: {{{x9}}}px;"></div> | ||
+ | }} | ||
− | + | <!-- Point 10 --> | |
− | + | {{#if: {{{x10|}}}{{{y10|}}} | | |
− | point | + | <div class="animated-point" style="top: {{{y10}}}px; left: {{{x10}}}px;"></div> |
− | + | }} | |
− | } | + | </div> |
− | </ |
Versiunea de la data 16 august 2024 23:18
<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;">