James Peret's blog. Built with Jekyll and the Mikey theme.

_animations.scss 421B

1234567891011121314151617181920
  1. //
  2. // Animations
  3. // --------------------------------------------------
  4. @mixin transition($speed, $prop:all, $ease:ease-in) {
  5. -webkit-transition: $prop $speed $ease;
  6. -moz-transition: $prop $speed $ease;
  7. -ms-transition: $prop $speed $ease;
  8. -o-transition: $prop $speed $ease;
  9. transition: $prop $speed $ease;
  10. }
  11. .animate {
  12. transition: all .5s cubic-bezier(0.23, 1, 0.32, 1);
  13. }
  14. .scaleIn {
  15. transform: scale(0);
  16. }