-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control speed of transition #33
Comments
@Dan-GG Unfortunately that feature was never included. Many of them have very specific and intricate timelines, and adding the ability to customize the transition times is not a simple task considering the transitions are pure CSS. For example, if you look at the source for one of the more complex animations like |
I found a rather simple way of working around the lack of this feature: /*example from .burger--emphatic*/
/*I also added transition and transform mixins for vendor prefixes*/
.burger-inner {
@include transition(background-color (0.2s * $speed) (0.25s * $speed) ease-in);
} Also, deviating radically from the topic, I want to say I am a fan of your project 100 Days of Scripture, it was truly inspiring at a personal level. |
I don't seem to find a way of controling the time the transition takes to complete/ the speed of the burger.
Is this really missing?
The text was updated successfully, but these errors were encountered: