$(function() { //鍙充晶鎮诞绐楀嚭鐜版晥鏋 $('body').on('mouseenter','.floatWindow',function(){ $('.floatWindow_box').stop(true).fadeIn(); }) $('body').on('mouseleave','.floatWindow',function(){ $('.floatWindow_box').stop(true).fadeOut(); }) //瀵艰埅鏍廻over鏁堟灉 $('body').on('mouseenter','.headerNav>li',function(){ $(this).find('.headerDown').stop(true).show(); }) $('body').on('mouseleave','.headerNav>li',function(){ $(this).find('.headerDown').stop(true).hide(); }) }) $(window).scroll(function () { var h = $(window).scrollTop() if (h > $('.warpper').offset().top - 150) { $('.publicNav').addClass('fiexd'); }else{ $('.publicNav').removeClass('fiexd'); } }) // 娉ㄦ剰鍦ㄨ缃墍鏈塂OM楂樺害浠g爜涔嬪悗 window.onload=function(){ $("html,body").animate({scrollTop:0},0) var url = window.location.toString(); var id = url.split("#")[1]; if(id && id!=""){ if($("#"+id).length>0){ var t = $("#"+id).offset().top-80; //80浠h〃鐨勬槸瀵艰埅鏍忕殑楂樺害 $("html,body").animate({scrollTop:t},10) } } $('a').click(function(){ if($(this).attr("href") && $(this).attr("href").split("#")[1]){ var a=$(this).attr("href").split("#")[1]; var p=$("#"+a).offset().top-80; //80浠h〃鐨勬槸瀵艰埅鏍忕殑楂樺害 $("html,body").animate({scrollTop:p},10); } }) }