Authored by 毕凯

侧边导航栏,滑动效果有穿透效果 修改

... ... @@ -62,6 +62,10 @@ $sideNav.on('touchstart', 'li', function(e) {
}
});
$sideNav.on('touchmove', function(e) {
e.stopPropagation();
});
//返回一级导航,收起二级导航
$subNav.each(function() {
$(this).find('li').eq(0).on('touchstart', function() {
... ...