我在wordpress中使用WP Responsive Select Menu插件,我在移动设备中观看网站时有响应式菜单。
在我的基于IOS的手机中,当我向左滚动屏幕时(自动向下滚动),响应式菜单会自动打开。 我的.js文件如下:
` //开始代码
win.theme = "Theme.AppCompat.NoTitleBar";
}); `
我不希望在向左或向右滑动屏幕时加载菜单。知道该怎么做??
答案 0 :(得分:0)
我已经弄清楚了。
注释掉以下代码会阻止它。
if( wpresmenu.swipe != 'no' ) {
$('body').touchwipe({
wipeLeft: function() {
// Close
$.sidr('close', 'wpresmenu_menu');
},
wipeRight: function() {
// Open
$.sidr('open', 'wpresmenu_menu');
},
min_move_x: 60,
min_move_y: 60,
preventDefaultEvents: false
});
}
:)