apolineaire
5/26/2018 - 1:39 PM

CSS Bounce effect

CSS Bounce effect

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