<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<style>
body,html {
margin: 0;
height: 100%;
}
main {
display:flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100%;
box-sizing: border-box;
padding-bottom: 12px;
padding-top: 32px;
background-image: url("./CB_H23_DC_02_203_Ver_010_TALENT.jpg");
animation: slide 5s forwards;
/*to have animation move back to beginning, animation: slide 4s 2 alternate;*/
animation-delay: 1s;
}
@keyframes slide {
from {
background-position-x: left;
}
to {
background-position-x: right;
}
}
</style>
</head>
<body>
<main>
<img src="./A season of wonder & joy_.png" alt="A season of wonder and joy.">
<img src="./CrateLogo.png" alt="Crate and kids">
</main>
</body>
</html>
7
1
1KB
1KB
95.0ms
131.0ms
134.0ms