e42875a2cbda82c839fc582de1c37eb03ad2e28d9449f616d03a4fa0de7a973019f922e197a06ff6323d6404f81d53564e1e8338cd802075b6b36652f33bea 559 B

123456789101112131415161718192021222324252627282930
  1. @keyframes flipInY {
  2. from {
  3. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  4. animation-timing-function: ease-in;
  5. opacity: 0;
  6. }
  7. 40% {
  8. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  9. animation-timing-function: ease-in;
  10. }
  11. 60% {
  12. transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  13. opacity: 1;
  14. }
  15. 80% {
  16. transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  17. }
  18. to {
  19. transform: perspective(400px);
  20. }
  21. }
  22. .flipInY {
  23. backface-visibility: visible !important;
  24. animation-name: flipInY;
  25. }