Jump

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

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

Based on @Ibelick

Designed with ♥ by @AdrianGerman