1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
@keyframes swing-out-bottom-fwd { 0% { transform: rotateX(0); transform-origin: bottom; opacity: 1 } to { transform: rotateX(-70deg); transform-origin: bottom; opacity: 0 } } .GRIMOIRE_CSS_ANIMATION { animation-name: swing-out-bottom-fwd; }