"top": '0px' }); $(".nav-contact").css("height",60); $("#big-nav").hide(); $("#small-nav").show(); } else { $(".nav-contact").css("position", "static"); $("#big-nav").show(); $("#small-nav").hide(); } }); } //首先将#backTop隐藏 $("#backTop").hide(); //当滚动条的位置处于距顶部100像素以下时,跳转链接出现,否则消失 $(window).scroll(function() { if ($(window).scrollTop() > 100) { $("#backTop").fadeIn(); } else { $("#backTop").fadeOut(); } }); //当点击跳转链接后,回到页面顶部位置 $("#backTop").click(function() { $('body,html').animate({ scrollTop: 0 }, 500); return false; }); //在线客服,非常在线QQ对话窗 function chat(URL){ window.open (URL, "newwindow", "height=460, width=580, toolbar =no, menubar=no,scrollbars=no, resizable=yes, location=no, status=no") }; //头部导航 $(function() { $(".setNav>li").hover(function() { $(this).addClass("active"); if (!$(this).find("div").is(":animated")) $(this).find("div").show(); }, function() { $(this).removeClass("active"); if (!$(this).find("div").is(":animated")) $(this).find("div").hide(); }) });