问题
I can't find the setting to remove the opening slide animation introduced by mmenu. I have managed to get it to close instantly by setting transition duration to zero.
$("nav#menu").mmenu({
searchfield: false,
slidingSubmenus: false,
header: {
add : true,
update : true,
title : 'application'
},
}, {
transitionDuration: 0,
});
回答1:
By changing the values from 0.4s to 0.0s like below in the jquery.mmenu.all.css file i managed to open the menu without the slide animation.
.mm-fixed-bottom {
-webkit-transition: none 0.0s ease;
-moz-transition: none 0.0s ease;
-ms-transition: none 0.0s ease;
-o-transition: none 0.0s ease;
}
回答2:
Think you need 'transitionDuration' option, set it to 0. look on this page.
来源:https://stackoverflow.com/questions/25051887/is-it-possible-to-remove-the-slide-animation-in-mmenu