O
N
D
A
S
B
O
U
N
C
E
.bounce {
-webkit-box-reflect: below -40px linear-gradient(transparent, rgba(0,0,0,.2));
}
.bounce span {
display: inline-block;
animation: animar 3s infinite;
animation-delay: calc(.1s * var(--i));
}
@keyframes animar {
0%,40%,100% {
transform: translateY(0)
}
20% {
transform: translateY(-40px)
}
}