grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
@keyframes flip-out-y {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.GRIMOIRE_CSS_ANIMATION {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flip-out-y;
}