; $(function () { ; $(".menu_btn").click(function () { $("body").addclass('openmenu'); $(".allnav").animate({ right: 0 }, 400); $(".overlay").animate({ right: 0 }, 400); }) ; $(".overlay").click(function () { $("body").removeclass('openmenu'); $(".allnav").animate({ right: "-200px" }, 400); $(".overlay").animate({ right: "-100%" }, 400); }) ; $(".h_weixin").click(function () { $(".icon_weixin").slidetoggle(); }) if ($(window).width() <= 768) { $(".footer li.link h4").click(function () { $(this).parent(".link").find("p").slidetoggle(); $(this).parent(".link").siblings(".link").find("p").slideup(500); }) } if ($(window).width() <= 640) { } $(".website_list").each(function () { if ($(window).width() <= 768) { $(this).find("li:nth-child(2),li:nth-child(4),li:nth-child(6),li:nth-child(8)").addclass("active"); } else { $(this).find("li:nth-child(2),li:nth-child(4),li:nth-child(5),li:nth-child(7)").addclass("active"); } }) $(".net_list").eq(0).css({ "margin-left": "0" }); $(".feature_box dl:last-child dd").css({ "padding-bottom": "0" }); //$(window).scroll(function () { // if ($(this).scrolltop > 0) { // $(".backtop").fadeout(); // } else { // $(".backtop").fadein(); // } //}) $(".backtop").click(function () { $('body,html').animate({ scrolltop: 0 }, 1000); }) //tab切换 var $product_tab = $(".tab-box") $product_tab.each(function () { var _this = $(this); var $title = _this.find(".tab-title"); var $content = _this.find(".tab-content"); $title.find("li").click(function () { var index = $(this).index(); $title.find("li").removeclass("current"); $content.hide(); $(this).addclass("current").siblings().removeclass("current"); $content.eq(index).show(); }) }) var $product_tab = $(".benefits") $product_tab.each(function () { var _this = $(this); var $title = _this.find(".benefits_bottom"); var $content = _this.find(".benefits_content"); $title.find("li").click(function () { var index = $(this).index(); $title.find("li").removeclass("current"); $content.hide(); $(this).addclass("current").siblings().removeclass("current"); $content.eq(index).show(); }) $title.find("li").hover(function () { var index = $(this).index(); $title.find("li").removeclass("current"); $content.hide(); $(this).addclass("current").siblings().removeclass("current"); $content.eq(index).show(); }) }) })