Authored by 毕凯

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

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