rotateOutDownRight.css 268 B

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