Bild bewegt sich automatisch von links nach rechts |
![]() |
Quellcode |
<html> <head> hier nichts <style> #img {position: absolute;animation: moveImage 10s linear infinite;left: -250px;} @keyframes moveImage {100% { transform: translateX(calc(100vw + 500px)); } } </style> <head> <body > <img id="img" src="../Bilder/w-sorb.png" style="height: auto; width:20%"/> </body> </html> |