...
|
...
|
@@ -34,6 +34,7 @@ $('.nav-btn').on('touchstart', function(event) { |
|
|
|
|
|
//设置boy高宽,页面不能上下滑动
|
|
|
$('body').css({
|
|
|
height: $(window).height(),
|
|
|
overflow: 'hidden'
|
|
|
});
|
|
|
return false;
|
...
|
...
|
@@ -47,6 +48,7 @@ function hideSideBar() { |
|
|
$('.sub-nav').removeClass('show');
|
|
|
$sideNav.removeClass('on');
|
|
|
$('body').css({
|
|
|
height: 'auto',
|
|
|
overflow: 'auto'
|
|
|
});
|
|
|
}
|
...
|
...
|
|