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?
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;