rollIn.css 489 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. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  6. @keyframes semi-rollIn {
  7. from {
  8. opacity: 0;
  9. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  10. }
  11. to {
  12. opacity: 1;
  13. transform: translate3d(0, 0, 0);
  14. }
  15. }
  16. .semi-rollIn {
  17. animation-name: semi-rollIn;
  18. }