rotateOutUpRight.css 261 B

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