0

In this YouTube video @20:49, he uses is transition() in his stylesheet to enable the easing in and out of the off screen navigation. He is using Bourbon as well. How can I translate the same transition effect into regular CSS?

Dre
  • 2,933
  • 2
  • 18
  • 21
Liondancer
  • 15,721
  • 51
  • 149
  • 255

1 Answers1

1

You can see the source for that mixin here. If you don't pass any args, the default settings use 0.15s and compile to:

-webkit-transition: all 0.15s ease-out 0s;
-moz-transition:all 0.15s ease-out 0s;
transition:all 0.15s ease-out 0s;
Dre
  • 2,933
  • 2
  • 18
  • 21