Flip vertical

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

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

Based on @Ibelick

Designed with ♥ by @AdrianGerman