2d23bb2e42d8d0021164c02b3d0f230f2b13978d63556f4c0cee9e8a8ec4bd5b73daf4bc9081ca6ab2e81f660f81751c0a28753f84004582788340970809e2 223 B

123456789101112131415
  1. @keyframes rotateOutUpRight {
  2. from {
  3. opacity: 1;
  4. }
  5. to {
  6. transform: rotate3d(0, 0, 1, 90deg);
  7. opacity: 0;
  8. }
  9. }
  10. .rotateOutUpRight {
  11. animation-name: rotateOutUpRight;
  12. transform-origin: right bottom;
  13. }