$(".banner").hover(function(){ $(this).find(".prev,.next").fadeto("show",0.1); },function(){ $(this).find(".prev,.next").hide(); }) /*鼠标移过某个按钮 高亮显示*/ $(".banner .prev,.banner .next").hover(function(){ $(this).fadeto("show",0.7); },function(){ $(this).fadeto("show",0.1); }) $(".banner").slide({ titcell:".num ul" , maincell:".51buypic" , effect:"fold", autoplay:true, delaytime:700 , autopage:true }); // news $(function(){ $('.news-box .right .tit span').each(function(index){ $(this).mouseenter(function(){ $(this).addclass('n-active').siblings().removeclass('n-active'); $('.news-box .right .center ol:eq('+index+')').css('display','block').siblings().css('display','none'); }) }); });