Un GIF qui bouge un peu partout sur ton ecran
<style>
.gif-promeneur {
position: fixed; /* Reste visible même au scroll */
z-index: 9999; /* Toujours au premier plan */
width: 80px; /* Ajustez la taille ici */
pointer-events: none; /* Ne bloque pas les clics sur le blog */
animation:
bougeHorizontal 12s linear infinite alternate,
bougeVertical 7s linear infinite alternate;
}
@keyframes bougeHorizontal {
from { left: 0%; }
to { left: calc(100% - 80px); }
}
@keyframes bougeVertical {
from { top: 0%; }
to { top: calc(100% - 80px); }
}
</style>
<img src="URL DE L'IMAGE GIF OU PNG" class="gif-promeneur" />