Control the direction and number of times an animation plays.
Source Code
.repeated-animation {
animation: bounce 2s infinite alternate;
}
@keyframes bounce {
from { transform: translateY(0); }
to { transform: translateY(-100%); }
}
Control the direction and number of times an animation plays.
.repeated-animation {
animation: bounce 2s infinite alternate;
}
@keyframes bounce {
from { transform: translateY(0); }
to { transform: translateY(-100%); }
}