1 2 3 4 5 6 7 8 9 10 11 12 13 14
@keyframes flip-2-hor-bottom-2 { 0% { transform: translateY(0) rotateX(0); transform-origin: 50% 100% } to { transform: translateY(100%) rotateX(-180deg); transform-origin: 50% 0% } } .GRIMOIRE_CSS_ANIMATION { animation-name: flip-2-hor-bottom-2; }