
Background:animation

<style>
main {
width: 100%; height: 329px;
display: flex;
background: url('https://tutorialesenlinea.es/uploads/posts/2019-03/1552342487_trucos_y_efectos_en_css3_-tutoriales_en_linea.webp') repeat-x 0 center/auto 100%;
animation: smooth 10s linear infinite;
animation-play-state: running;
}
/* main:hover, main:focus {
animation-play-state: running;
} */
@keyframes smooth {
to {
background-position: 1970px center;
}
}
</style>
<main class="main"></main>
Ver resultado
Comentarios