CSS Bounce effect
.thing-to-bounce{ animation: bounce 0.1s linear 0.3s; } @keyframes bounce{ from {left: -10%;} 50% {left: 10%;} to {left: 0%;} }