goods-cate.js 993 Bytes
/**
 * 商品分类js
 * @author: liuyue(yue.liu@yoho.cn)
 * @date: 2015/9/7
 */

var $ = require('yoho.jquery');

//主导航样式及点击事件
$('.cate-nav').on('click', 'li', function() {
	var nowIndex = $(this).index();
	$(this).addClass('current').siblings().removeClass('current');
	$('.cate-main').hide().eq(nowIndex).show();
});

//主体内容显示控制
$('.cate-main').eq(0).show();

//一级导航样式及点击事件
$('.cate-first').each(function() {
	$(this).find('li').eq(0).addClass('current');
	$(this).on('click', 'li', function() {
		var nowIndex = $(this).index();
		$(this).addClass('current').siblings().removeClass('current');
		$(this).parents('.cate-main').find('.cate-second-section').hide().eq(nowIndex).show();
	});
});

//设置二级导航高度,出现滚动条
$('.cate-second').height($(window).height() - $('.cate-second').offset().top);

//微信中隐藏头部
if (window.ws) {
	$('#header').hide();
};

$('body').css({
	backgroundColor: '#f8f8f8'
})