1
0

rotateInDownRight.css 495 B

1234567891011121314151617181920212223
  1. /*
  2. * Modified based on animate.css and added prefix name to prevent style conflicts
  3. * Reference: https://github.com/animate-css/animate.css
  4. */
  5. @keyframes semi-rotateInDownRight {
  6. from {
  7. transform-origin: right bottom;
  8. transform: rotate3d(0, 0, 1, 45deg);
  9. opacity: 0;
  10. }
  11. to {
  12. transform-origin: right bottom;
  13. transform: translate3d(0, 0, 0);
  14. opacity: 1;
  15. }
  16. }
  17. .semi-rotateInDownRight {
  18. animation-name: semi-rotateInDownRight;
  19. }