Bouncing

global.css
.bouncing {
  animation: bouncing 1s ease-in-out both;
}

@keyframes bouncing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman