rotateInUpRight.css 258 B

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