Hi,
Does anybody can help me find out why is a delay when I open/close the menu.
I made some modification to make the menu 3d-ish, but now it’s slower than before.
Here is an example:
Here is my modification:
.menu-content {
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
-webkit-transition: all 200ms linear !important;
-moz-transition: all 200ms linear !important;
-ms-transition: all 200ms linear !important;
-o-transition: all 200ms linear !important;
transition: all 200ms linear !important;
-webkit-backface-visibility: hidden !important;
}
.menu-content-open {
-webkit-transform: translate3d(270px,0,0) scale(0.75) !important;
-moz-transform: translate3d(270px,0,0) scale(0.75) !important;
-ms-transform: translate3d(270px,0,0) scale(0.75) !important;
transform: translate3d(270px,0,0) scale(0.75) !important;
}