$(function () { $(".MainNav li").each(function (i, n) { if ($(this).find(".NavPull dd").length == 0) { $(this).find(".arr").hide(); $(this).find(".NavPull").addClass("null"); } }); // $(".openbtn").click(function () { $(this).toggleClass("on"); $(".MainNav").slideToggle(); $("body").addClass("bodyon"); $(".closebtn").slideToggle(); }); // $(".closebtn").click(function () { $(".openbtn").removeClass("on"); $(".MainNav").slideToggle(); $("body").removeClass("bodyon"); $(".closebtn").slideToggle(); }); // // $('.SubNav ul li').hover(function(){ var index = $(this).index(); $(this).addClass('on'); $(this).siblings('li').removeClass('on'); $('.bds ul').eq(index).css('display','block'); $('.bds ul').eq(index).siblings('ul').css('display','none') }) $(window).scroll(function () { if ($(window).scrollTop() >= 1) { $(".Header").addClass("Fixedtop"); } else { $(".Header").removeClass("Fixedtop"); } }); // //导航固定 if ($(window).width() > 998) { $(".MainNav li").hover(function () { $(this).find(".NavPull").stop(true, true).slideDown(); }, function () { $(this).find(".NavPull").stop(true, true).slideUp(); }); $(".HomeBody .MainNav li").hover(function () { $(this).find(".NavPull").stop(true, true).hide(); }); } else { } //PC端下拉 if ($(window).width() < 998) { $(".MainNav .box li").each(function () { var Btn = $(this).find(".arr"); Btn.click(function () { var statis = $(this).parents("li").find(".NavPull").css("display"); if (statis == "none") { $(this).parents("li").siblings().removeClass("onnav"); $(this).parents("li").siblings().find(".NavPull").slideUp(); $(this).parents("li").addClass("onnav"); $(this).parents("li").find(".NavPull").slideDown(); } else { $(this).parents("li").find(".NavPull").slideUp(); $(this).parents("li").removeClass("onnav"); } }); }); } else { } //PC端下拉 $(function () { $(".flodbtn").click(function () { $(".MainNav").animate({ "left": "0px" }, 500); $(".navclose").animate({ "right": "36%" }, 500); }); $(".navclose").click(function () { $(".MainNav").animate({ "left": "-100%" }, 500); $(".navclose").animate({ "right": "-36%" }, 100); }); }); $(function () { //获取浏览器宽度 var _width = $(window).width(); if (_width < 800) { //直接为该div添加w1024样式,会覆盖前一个样式 $(".Menu").addClass("Meunbtn"); $(".Meunbtn .title").click(function () { $(".Menu ul").slideToggle(); }) } else { } }); //内页二级 $(".SlideTxt").slide({}); $(".SinglePage img").removeAttr("width").removeAttr("height"); $(".SinglePage img").parent("p span").css("text-indent", "0em"); $(".SinglePage img").parent("p").css("text-indent", "0em"); // 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); }); //返回顶部 }); $(function () { $('.ZJselectBox').each(function (i) { var _this = $(this); var spantxt = _this.find('.ZJselectTxt span').text(); _this.find('.ZJselectTxt').click(function (enevt) { $('.ZJselectBox').not($('.ZJselectBox').eq(i)).find('.ZJselectUl').stop(true).slideUp(); _this.find('.ZJselectUl').stop(true).slideToggle(); $(this).find('.icon').toggleClass('iconOn'); $('.ZJselectBox').not($('.ZJselectBox').eq(i)).find('.icon').removeClass('iconOn'); enevt.stopPropagation(); }); _this.find('.ZJselectUlBox ul li').click(function (enevt) { _this.find('.ZJselectTxt span').text($(this).text()); _this.find('.ZJselectUl').stop(true).slideUp(); $('.ZJselectBox .icon').removeClass('iconOn'); enevt.stopPropagation(); }); }); }); /*仿下拉框*/ $(function () { $('.ChinaMap .hd li').click(function () { $(this).addClass('on').siblings('li').removeClass('on'); var flag = $('.ChinaMap .bd dl dd').eq($(this).index()).find(".con").text().trim().length == 0; if (!flag) { $('.ChinaMap .bd dl dd').hide(0); $('.ChinaMap .bd dl dd').eq($(this).index()).show(); } }); $('.ChinaMap .bd dl dd a.close').click(function () { $(this).parents('dd').hide(); }) })