$(function(){ if(navigator.appName == "Microsoft Internet Explorer"&&parseInt(navigator.appVersion.split(";")[1].replace(/[ ]/g, "").replace("MSIE",""))<10){ alert("您的当前浏览器版本过低,请下载IE10以上版本访问本站"); } $("header ul.navlist li").hover(function(){ $("header ul.navlist li .dropdown").stop(false,true); $(this).find(".dropdown").slideDown(); $(this).find("h3 a").addClass("active"); },function(){ $("header ul.navlist li .dropdown").stop(false,true); $(this).find(".dropdown").fadeOut(); $(this).find("h3 a").removeClass("active"); }); $(".mobile-bar").click(function() { $("html,body").addClass("over"); $(".mobile_nav").fadeIn(); }); $(".mobile_nav .nav_close").click(function() { $("html,body").removeClass("over"); $(".mobile_nav").hide(); $(".mobile_nav ul.list li h3").removeClass("cur"); $(".mobile_nav .down").hide(); }); $(".mobile_nav ul.list li h3").click(function() { var index = $(".mobile_nav ul.list li h3").index($(this)); if ($(this).attr("class") == "cur") { $(this).removeClass("cur"); $(this).next(".down").slideUp(); } else { $(".mobile_nav ul.list li h3").removeClass("cur"); $(this).addClass("cur"); $(".mobile_nav .down").slideUp(); $(this).next(".down").slideDown(); } }); window.onload = function () { var pos = $('.header_23').offset(); $(window).scroll(function () { if ($(this).scrollTop() > 150 ) { $('.header_23').addClass("fixed"); $('.back_top').addClass("show"); } else if ($(this).scrollTop() <= 150 ) { $('.header_23').removeClass("fixed"); $('.back_top').removeClass("show"); } }) }; $(".back_top").click(function(){ $("html , body").animate({ "scrollTop":0 },1000); }); // window.onload = function () { // var pos = $('header .content').offset(); // $(window).scroll(function () { // if ($(this).scrollTop() > pos.top ) { // $('header .content').addClass("fixed"); // } // else if ($(this).scrollTop() <= pos.top ) { // $('header .content').removeClass("fixed"); // } // }) // }; $(".popNotice .closed").click(function(){ $(".popNotice").fadeOut(); }); var wow = new WOW({ boxClass: 'wow', animateClass: 'animated', mobile: true, live: true }); wow.init(); });