Flip horizontal

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

@keyframes flip-horizontal {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman