...
|
...
|
@@ -301,8 +301,10 @@ $yohoPage.on('touchstart', '.tap-hightlight', function() { |
|
|
$(this).removeClass('highlight');
|
|
|
});
|
|
|
|
|
|
$('.nav-home').on('touchstart', function() {
|
|
|
$('.nav-home').on('touchstart', function(e) {
|
|
|
$('.homebuttom').toggleClass('hide');
|
|
|
e.preventDefault();
|
|
|
e.stopPropagation();
|
|
|
});
|
|
|
|
|
|
// 点击关闭头部菜单
|
...
|
...
|
|