Authored by 梁志锋

点击效果

... ... @@ -60,7 +60,7 @@ $sideNav.on('touchmove', function(e) {
});
//点击一级导航,弹出二级导航
$sideNav.on('touchend', 'li', function(e) {
$sideNav.on('touchstart', 'li', function(e) {
if ($(this).find('.sub-nav').size() > 0) {
$('.sub-nav').removeClass('show');
$(this).find('.sub-nav').addClass('show');
... ... @@ -87,6 +87,7 @@ $subNav.each(function() {
// 侧边栏点击背景色变化
function highlight($elem) {
$elem.find('li').on('touchstart', function() {
$elem.find('.highlight').removeClass('highlight');
$(this).addClass('highlight');
}).on('touchend touchcancel', function() {
$(this).removeClass('highlight');
... ...