rotateOutUpRight.css 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. }