// 瀵艰埅鏍忓垪琛ㄦ樉闅 $('.nav-ul>li').mouseover(function(){ $(this).find('ul').stop().slideDown('600'); }); $('.nav-ul>li').mouseout(function(){ $(this).find('ul').stop().slideUp('600'); }); //鏁欏笀绠€鍘嗗唴瀹瑰垏鎹 $('.tea-exp-cont>div').eq(0).show(); $('.tea-exp ul.clear li').click(function() { $(this).addClass('exp-in').siblings().removeClass('exp-in'); var index = $(this).index(); i = index; $(".tea-exp-cont>div").stop().fadeOut(0); $(".tea-exp-cont>div").eq(index).stop().fadeIn(500); }); // 杩斿洖椤堕儴 $(".backtop").click(function(e){ e.preventDefault(); $(document.documentElement).animate({ scrollTop: 0 },300); $(document.body).animate({ scrollTop: 0 },300); }); //鍒楄〃涓嬪垝绾垮垽鏂皟鏁 $('.list').each(function() { var $linum = $(this).find('li').length; if($linum <= 1){ $(this).addClass('bornone'); }else { $(this).removeClass('bornone'); } }); // 浜虹墿澶村儚璋冩暣 $(window).load(function() { $(".slt").each(function(){ $img = $(this).find("img"); $w = $img.width(); $h = $img.height(); /* sr = $img.attr("src") alert(sr+","+$w+","+$h)*/ $bw= $(this).width(); $bh= $(this).height(); b1 = $w/$h; b2 = $bw/$bh; if(b1>b2){ $img.css("height","100%"); $wed = $bh*b1; $img.css("width",$wed+"px"); fz =($(".slt").width()-$wed)/2; $img.css("margin-left",fz+"px"); }else{ $img.css("width","100%"); $hed = $bw/b1; $img.css("height",$hed+"px"); fs =($(".slt").height()-$hed)/2; $img.css("margin-top",fs+"px"); } }); });