function bannerSize(){ var w=$(window).width(); var h=$(window).height(); if(w>1200){ $(".banner,.banner .bd ul").css({width:w,height:(400*w)/1920}); $(".banner .bd li").css({width:w,height:(400*w)/1920}); }else{ $(".banner,.banner .bd ul").css({width:1200,height:(400*1200)/1920}); $(".banner .bd li").css({width:1200,height:(400*1200)/1920}); } } /** * tabs * @return */ function tabs(tabTitle,tab_content,event){ var index=$(tabTitle).children(".hover").index() $(tab_content).children().eq(index).show().siblings().hide(); $(tabTitle).children().bind(event,function(){ var index=$(this).index(); $(this).addClass("hover").siblings().removeClass("hover"); $(tab_content).children().eq(index).show().siblings().hide(); return false; }); } //閫夐」鍗 閾炬帴鏂规硶 function tabsURL(tabsURLClass){ var title1Tab=$(tabsURLClass).children("li") title1Tab.hover(function(){ var URL=$(this).find("a").attr("href") $(this).parents("ul").siblings("a").attr("href",URL) }) } function goTop(){ $('body,html').stop().animate({scrollTop:0},1000); } function scrollSlow(div,time){ var w=$(window).width(); var h=$(window).height(); var h1=$(div).height(); var margintop=(h-h1)/2; $(div).animate({top:margintop},time); $(window).scroll(function(){ var top=$(this).scrollTop(); $(div).stop().animate({top:top+margintop},time); }); } /* *瀛椾綋澶у皬 */ $(function(){ var fontSize=$(".articleTime span") var articleBox=$(".articleBox") fontSize.click(function(){ $(this).addClass("hover").siblings().removeClass("hover") var fontHtml=$(this).html(); if(fontHtml=="灏?) { articleBox.css({"font-size":"12px"}) } else if((fontHtml=="涓?)) { articleBox.css({"font-size":"14px"}) } else if((fontHtml=="澶?)) { articleBox.css({"font-size":"18px"}) } }) }) $(document).ready(function(){ //瀵艰埅 $('.menu dd').hover(function(){ $('.menu dd.hover').addClass("active").removeClass("hover"); $(this).addClass("hover"); $(this).find(".second").stop(true,true).slideDown(500); },function(){ $(this).removeClass("hover"); $('.menu dd.active').addClass("hover").removeClass("active"); $(this).find(".second").stop(true,true).slideUp(200); }); /*棣栭〉start*/ $(".banner").slide({ titCell: ".hd ul", mainCell: ".bd ul", autoPlay:true, //鑷姩鎾斁 autoPage:true, effect:"fold", //宸﹀惊鐜粴鍔 fold锛氭贰鍏ユ贰鍑 topLoop锛氫笂寰幆婊氬姩锛 leftLoop锛氬乏寰幆婊氬姩锛 delayTime: 1000, //鍒囨崲鏃堕棿 interTime: 5000 }); bannerSize(); //绗竴閫氭爮 $(".ind1stL").slide({ titCell: ".hd ul", mainCell: ".bd dl", autoPlay:true, //鑷姩鎾斁 autoPage:true, effect:"leftLoop", //宸﹀惊鐜粴鍔 fold锛氭贰鍏ユ贰鍑 topLoop锛氫笂寰幆婊氬姩锛 leftLoop锛氬乏寰幆婊氬姩锛 delayTime: 1000, //鍒囨崲鏃堕棿 interTime: 3000, //鍒囨崲闂撮殧 trigger: "click", prevCell: ".prev", nextCell: ".next" }); $(".proSlide").slide({mainCell:".bd dl",prevCell:".prev",nextCell:".next",autoPage:true,delayTime:1000,interTime:3000,effect:"leftLoop",autoPlay:true,vis:4}); /*鍦ㄧ嚎鍜ㄨ*/ $(".float_tittle").toggle( function(){ $(".float_bg").stop(true,true).css("display","block"); },function(){ $(".float_bg").stop(true,true).fadeOut(); }); /*鎮诞绐?/ scrollSlow(".floatBox",1000); //鎷涜仒 $(".join_dl dd").each(function(index, element) { $(this).find(".joinTit").click(function(){ var val =$(this).find(".span6").text(); if(val =="+"){ $(this).parent().addClass("hover"); $(this).find(".span6").text("-"); $(this).siblings(".joinDeta").slideDown(); $(this).parent().siblings().removeClass("hover"); $(this).parent().siblings().find(".joinDeta").slideUp(); $(this).parent().siblings("dd").find(".span6").text("+"); }else{ $(this).parent().removeClass("hover"); $(this).find(".span6").text("+"); $(this).siblings(".joinDeta").slideUp(); } }); }); }); $(window).resize(function(){ bannerSize(); });