flexnav
flexnav copied to clipboard
Might be a bug , Click on Menu it transitions smoothly click on menu again to close it and it just goes back to its normal state
Can you add a transition for when the user clicks the menu a 2nd time to close it??
+1 I'd like to resolve this, too. So far no good. =0
If you're using the SASS flavored version of the stylesheet you can add the smooth transitions to the .flexnav class.
.flexnav { transition: none; -webkit-transform-style: preserve-3d; // stop webkit flicker overflow: hidden; margin: 0 auto; width: 100%; max-height: 0; -webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -ms-transition: all .5s ease-in-out; transition: all .5s ease-in-out; }
This worked for me.