Vertical bounce

global.css
.vertical-bounce {
  animation: vertical-bounce 0.6s ease-in-out both;
}

@keyframes vertical-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman