$(function(){ $("a").focus(function(){this.blur();}); $(".MainNav li").each(function (i, n) { if ($(this).find(".NavPull dd").length == 0) { $(this).find(".NavPull").addClass("null"); } }); // $(".MainNav li").hover(function(){ $(this).find(".NavPull").stop(true,true).show(); },function(){ $(this).find(".NavPull").stop(true,true).hide(); }); //涓嬫媺 var p = 0, t = 0; $(function () { var prevScrTop = 0; $(document).scroll(function () { var scrTop = $(document).scrollTop(); var topBarHeight = $(".container").height(); var menuBarHeight = $(".Header").height(); var level1Max = topBarHeight; var level2Max = menuBarHeight + topBarHeight; if (scrTop > level2Max) { //$(".Header").addClass("fixed3"); } if (scrTop == 0) { $(".Header").removeClass("fixed3").removeClass("fixed2"); return; } if (scrTop < level2Max) { console.log(3); $(".Header").removeClass("fixed3"); $(".Header").addClass("fixed2"); return; } p = $(this).scrollTop(); if (t < p) {//涓嬫粴 $(".Header").removeClass("fixed2").addClass("fixed3"); console.log("t:"+t+"p:"+p); } else if(t>p) {//涓婃粴 $(".Header").removeClass("fixed3").addClass("fixed2"); console.log(2); } t = p; }); }); //瀵艰埅瀹氫綅 $(".itemhover").hover(function(){ $(this).addClass("activehover"); },function(){ $(this).removeClass("activehover"); }); //婊戣繃鏄剧ず闃村奖鏁堟灉 $(".ItemInfo").each(function(i,item){ if(Number(i+1)%2 == 0){ $(this).addClass("next"); } }); // $(".PrevNextBox dl").each(function() { var myhref = $(this).find("a").attr("href"); if (myhref == "#") { $(this).find("a").addClass("none"); $(this).find("a").removeAttr("href"); } }); //鏂伴椈璇︽儏 $(".HrList li").each(function(){ var Btn = $(this).find(".jobtitle").find("table"); Btn.click(function(){ var statis = $(this).parents("li").find(".txtCont").css("display"); if(statis == "none"){ $(this).parents("li").siblings().removeClass("current"); $(this).parents("li").siblings().find(".txtCont").slideUp(500); $(this).parents("li").addClass("current"); $(this).parents("li").find(".txtCont").slideDown(500); } else{ $(this).parents("li").find(".txtCont").slideUp(500); $(this).parents("li").removeClass("current"); } }); }); //浜烘墠鎷涜仒 $(".SinglePage img").parent("p span").css("text-indent","0em"); $(".SinglePage img").parent("p").css("text-indent","0em"); // $(".Footer .item").each(function(){ var Btn = $(this).find(".arr"); Btn.click(function(){ var statis = $(this).parents(".item").find(".sub").css("display"); if(statis == "none"){ $(this).parents(".item").siblings().removeClass("on"); $(this).parents(".item").siblings().find(".sub").slideUp(); $(this).parents(".item").addClass("on"); $(this).parents(".item").find(".sub").slideDown(); } else{ $(this).parents(".item").find(".sub").slideUp(); $(this).parents(".item").removeClass("on"); } }); }); //搴曢儴鏍忕洰 var offset = 200, offset_opacity = 1200, scroll_top_duration = 1000, $back_to_top = $('.totop'); $(window).scroll(function(){ ( $(this).scrollTop() > offset ) ? $back_to_top.addClass('cd-is-visible') : $back_to_top.removeClass('cd-is-visible'); }); $('.totop').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);}); //杩斿洖椤堕儴 });