Authored by 梁志锋

提交侧边栏代码

... ... @@ -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() {
... ...
... ... @@ -152,18 +152,6 @@
}
}
// li.new {
// margin: (19rem / $pxConvertRem) 0 0;
// border-top: 1px solid #e0e0e0;
//
// a {}
//
// i {
// background: image-url("side-nav/new.png") no-repeat left center;
// background-size: 100% 100%;
// }
// }
li.guang, li.trendfinder {
.nav-icon {
background: image-url("side-nav/guang.png") no-repeat left center;
... ... @@ -208,15 +196,6 @@
z-index: 2;
}
/* img{
position: absolute;
max-width: 50rem / $pxConvertRem;
max-height: 50rem / $pxConvertRem;
left: 32rem / $pxConvertRem;
top: 50%;
margin-top: -25rem / $pxConvertRem;
border: none;
} */
.nav-point {
position: absolute;
left: 0rem / $pxConvertRem;
... ...