I have a list of boxes with a background image that scrolls vertically with:
@keyframes movie {
0% { background-position: 50% 5%; }
50% { background-positi
You can use animation-delay
.
animation-delay: 10s;
Or inside your shorthand:
animation: movie 50s linear 10s infinite;
Maybe easier to handle, with some pseudo-classes:
.movie:nth-of-type(1) {
animation-delay: 10s;
}
.movie:nth-of-type(2) {
animation-delay: 20s;
}
.movie:nth-of-type(3) {
animation-delay: 30s;
}