season_slhc.js 4.26 KB
$(function(){
	$(".nav-h2").hide();
	$(".common_nav").hover(
		function(){
			$(this).children(".nav-h2").show();
		},
		function(){
			$(this).children(".nav-h2").hide();
		}
	);
	
	var goodsslistTime = null;
	$('.goods-s-list li a').hover(function(){
		var _this = $(this);                    // 把$(this)对象赋给一个变量
		goodsslistTime = setTimeout(function(){
			_this.find('.end').find('.end-back').css('background', '#D60100');
			_this.find('.end').animate({"height":"65px"});
		}, 150);
		return false;
	}, function(){
		clearTimeout(goodsslistTime);
		$(this).find('.end').find('.end-back').css('background', '#000');
		$(this).find('.end').animate({"height":"40px"});
		return false;
	});
	
	$("img").lazyload({
		effect : "fadeIn",
		skip_invisible : false
	});
	
	
	/**
	 * 格子移动动画
	 */
	// function getOffset(e) {
		// var target = e.target;
		// if (target.offsetLeft == undefined) {
			// target = target.parentNode;
		// }
		// var pageCoord = getPageCoord(target);
		// var eventCoord = {
			// x: window.pageXOffset + e.clientX,
			// y: window.pageYOffset + e.clientY
		// };
		// var offset = {
			// offsetX: eventCoord.x - pageCoord.x,
			// offsetY: eventCoord.y - pageCoord.y
		// };
		// return offset;
	// };
// 			
	// function getPageCoord(element) {
		// var coord = {
			// x: 0,
			// y: 0
		// };
		// while (element) {
			// coord.x += element.offsetLeft;
			// coord.y += element.offsetTop;
			// element = element.offsetParent;
		// }
		// return coord;
	// };
// 			
	// $('.wl-list li a').hover(function(e){
		// var _this  = $(this), //闭包
		// _desc  = _this.find(".end").stop(true, true),
		// width  = 103, //取得元素宽
		// height = 103, //取得元素高
		// left   = (e.offsetX == undefined) ? getOffset(e).offsetX : e.offsetX, //从鼠标位置,得到左边界,利用修正ff兼容的方法
		// top    = (e.offsetY == undefined) ? getOffset(e).offsetY : e.offsetY, //得到上边界
		// right  = width - left, //计算出右边界
		// bottom = height - top, //计算出下边界
		// rect   = {}, //坐标对象,用于执行对应方法。
		// _min   = Math.min(left, top, right, bottom), //得到最小值
		// _out   = e.type == "mouseleave", //是否是离开事件
		// spos   = {}; //起始位置
		// rect[left] = function (epos){ //鼠从标左侧进入和离开事件
			// spos = {"left": -width, "top": 0};
			// if(_out){
				// _desc.animate(spos, "fast"); //从左侧离开
			// }else{
				// _desc.css(spos).animate(epos, "fast"); //从左侧进入
			// }
		// };
// 			
		// rect[top] = function (epos) { //鼠从标上边界进入和离开事件
			// spos = {"top": -height, "left": 0};
			// if(_out){
				// _desc.animate(spos, "fast"); //从上面离开
			// }else{
				// _desc.css(spos).animate(epos, "fast"); //从上面进入
			// }
		// };
// 			
		// rect[right] = function (epos){ //鼠从标右侧进入和离开事件
			// spos = {"left": left,"top": 0};
			// if(_out){
				// _desc.animate(spos, "fast"); //从右侧成离开
			// }else{
				// _desc.css(spos).animate(epos, "fast"); //从右侧进入
			// }
		// };
// 			
		// rect[bottom] = function (epos){ //鼠从标下边界进入和离开事件
			// spos = {"top": height, "left": 0};
			// if(_out){
				// _desc.animate(spos, "fast"); //从底部离开
			// }else{
				// _desc.css(spos).animate(epos, "fast"); //从底部进入
			// }
		// };
		// rect[_min]({"left":0, "top":0}); // 执行对应边界 进入/离开 的方法
	// });
	
	$('.season-recommend-top').dilislider({
		page : 10,
		point : '.season-point-float li',
		direction : 'fading'
	});
	
	Tools.rollImages({
		leftView : 'sr-left',
		rightView: 'sr-right',
		width: 185,
		lng : 4,
		vLng : 8
	});
	
	Tools.getPageCoord('.wl-list li a');
	
	//销量,口碑,价格切换
	var dtabs = function(_cname){
		var dds = _cname.parent().parent().parent().parent().parent().find('.s-list dd');
		for (var i=0;i<dds.length;i++){
			if (_cname.index() == i){
				dds[i].style.display = 'block';
			}else {
				dds[i].style.display = 'none';
			}
		}
	}
	Tools.setSelected('gfs1','div','act',{fun:dtabs, type:"hover"});
	Tools.setSelected('gfs2','div','act',{fun:dtabs, type:"hover"});
	Tools.setSelected('gfs3','div','act',{fun:dtabs, type:"hover"});
	Tools.setSelected('gfs4','div','act',{fun:dtabs, type:"hover"});

});