/** * 阅读页字体放大缩小 * @return */ $(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(".subnav").stop(true,true).slidedown(500); },function(){ $(this).removeclass("hover"); $('.menu dd.active').addclass("hover").removeclass("active"); $(this).find(".subnav").stop(true,true).slideup(500); }); $(".menu dd:last").css("border-right","none"); $(".menu dd:first").css("border-left","none"); //首页banner $(".bannerslide").slide({ maincell:".bd dl", titcell:".hd ul", titonclassname:"on",//当前状态 on进度条效果 cur选中效果 effect:"fold", //左循环滚动 fold:淡入淡出 toploop:上循环滚动; leftloop:左循环滚动; delaytime: 3000, //切换时间 intertime:5000, //切换间隔 autopage:true, autoplay:true, }); //con1 $(".con1 dl dd").each(function(index, element) { $(this).hover(function(){ $(this).find(".text").stop(true,true).animate({top:18},500); $(this).find(".more").stop(true,true).animate({bottom:19},500); },function(){ $(this).find(".text").stop(true,true).animate({top:38},500); $(this).find(".more").stop(true,true).animate({bottom:-18},500); }) }); $(".newshot").slide({ maincell:".bd ul", titonclassname:"on", effect:"topmarquee", delaytime: 30, intertime:50, vis:3, autopage:false, autoplay:true, }); //location $(".location p a:last").addclass("on"); //招聘 $(".recruitlistdl dd:odd").css("background","#eee") });