...
|
...
|
@@ -7,7 +7,6 @@ |
|
|
var $ = require('yoho.jquery');
|
|
|
|
|
|
//主导航样式及点击事件
|
|
|
$('.cate-nav').find('li').eq(0).addClass('current');
|
|
|
$('.cate-nav').on('click', 'li', function() {
|
|
|
var nowIndex = $(this).index();
|
|
|
$(this).addClass('current').siblings().removeClass('current');
|
...
|
...
|
@@ -33,4 +32,8 @@ $('.cate-second').height($(window).height() - $('.cate-second').offset().top); |
|
|
//微信中隐藏头部
|
|
|
if (window.ws) {
|
|
|
$('#header').hide();
|
|
|
} |
|
|
\ No newline at end of file |
|
|
};
|
|
|
|
|
|
$('body').css({
|
|
|
backgroundColor: '#f8f8f8'
|
|
|
}) |
|
|
\ No newline at end of file |
...
|
...
|
|