rotateOutUpLeft.css 220 B

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