Flip Y

global.css
.flip-y {
  animation: flip-y 0.6s ease-out both;
}

@keyframes flip-y {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(-1);
  }
  100% {
    transform: scaleY(1);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman