...
|
...
|
@@ -29,6 +29,11 @@ $('.nav-btn').on('touchstart', function(event) { |
|
|
$overlay.show().css('opacity', 0.3);
|
|
|
$sideNav.addClass('on');
|
|
|
openSideNav = true;
|
|
|
|
|
|
//设置boy高宽,页面不能上下滑动
|
|
|
$('body').css({
|
|
|
overflow: 'hidden'
|
|
|
});
|
|
|
return false;
|
|
|
});
|
|
|
|
...
|
...
|
@@ -39,6 +44,9 @@ function hideSideBar() { |
|
|
$('.overlay').hide();
|
|
|
$('.sub-nav').removeClass('show');
|
|
|
$sideNav.removeClass('on');
|
|
|
$('body').css({
|
|
|
overflow: 'auto'
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -60,10 +68,6 @@ $sideNav.on('touchstart', 'li', function(e) { |
|
|
}
|
|
|
});
|
|
|
|
|
|
$sideNav.on('touchmove', function(e) {
|
|
|
return false;
|
|
|
});
|
|
|
|
|
|
//返回一级导航,收起二级导航
|
|
|
$subNav.each(function() {
|
|
|
$(this).find('li').eq(0).on('touchstart', function() {
|
...
|
...
|
|