Horizontal bounce

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

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

Based on @Ibelick

Designed with ♥ by @AdrianGerman