You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
662 B

$(function(){
/*首页幻灯片效果 start*/
$(".index-slide").slide({ titCell:".num li" , mainCell:".slidepic", autoPlay:true, delayTime:700 });
/*首页幻灯片效果 end*/
//首页Tab标签卡滑门切换
var o, d;
$(".j_fruitMenu li").hover(function() {
var e = $(this);
o = setTimeout(function() {
e.addClass("sel").siblings("li").removeClass("sel"),
n = e.index(),
$(".j_fruitGoods").eq(n).css({
display: "block"
}).siblings(".j_fruitGoods").css({
display: "none"
})
},
200)
});
})