Beispiel:Object-fit-und position-3.html
Aus SELFHTML-Wiki
<!DOCTYPE html> <html lang="de">
<head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Art Direction mit object-fit und object-position</title> <style>
img { animation: direction 5s infinite alternate linear; }
@keyframes direction {
0% {
object-fit: cover; object-position: 50% 50%; width: 50em; height: auto;
}
95% {
object-fit: cover; object-position: 100% 50%; width: 15em; height: 20em;
}
100% {
object-fit: cover; object-position: 100% 50%; width: 15em; height: 20em;
}
}
</style>
</head> <body>
Art Direction mit object-fit und object-position
<article>
Monument Valley
<img src="https://wiki.selfhtml.org/images/6/62/John_Ford%27s_Point_Monument_Valley_Luca_Galuzzi_2007.jpg" alt="Ford's Point in Monument Valley, by Luca Galuzzi">
</article>
</body> </html>