$(function(){ // 菜单 $(".m_menu").hide(); var isshowmenu = false // 显示菜单 $(".m_header .nav_right").click(function(){ if(!isshowmenu){ $(".nav_right").addclass('active') $(".m_menu").fadein(200); isshowmenu = true $("html").css("overflow","hidden") $("html").css("height","100%") }else{ $(".nav_right").removeclass('active') $(".m_menu").fadeout(200); isshowmenu = false $("html").css("overflow","inherit") $("html").css("height","auto") } }); // 隐藏菜单 $(".m_menu").click(function(){ $(".nav_right").removeclass('active') $(this).fadeout(200); isshowmenu = false $("html").css("overflow","inherit") $("html").css("height","auto") }); // 阻止冒泡 $(".m_menu .menu_list").click(function(e){ e.stoppropagation() }); // 点击显示二级菜单 var isshowtwomenu = false var menustatus = false var oldindex = 0 $(".m_menu .menu_one h3").click(function(){ var newindex = $(this).parent().index() var menu_one = $(this).parent().siblings(".menu_one") var menu_two = $(this).siblings(".menu_two") if(oldindex != newindex){ menu_one.find("i").css("transform","rotate(0)"); menu_one.find(".menu_two").slideup(100) menu_two.slidedown(200); $(this).find("i").css("transform","rotate(180deg)"); oldindex = newindex isshowtwomenu = false }else{ if(!isshowtwomenu){ menu_two.slideup(200); $(this).find("i").css("transform","rotate(0)"); isshowtwomenu = true }else{ menu_two.slidedown(200); $(this).find("i").css("transform","rotate(180deg)"); isshowtwomenu = false } } }); //返回顶部 $("#back_top").hide(); $(window).scroll(function() { if ($(window).scrolltop() > 500) { $("#back_top").fadein(200); } else { $("#back_top").fadeout(200); } }); $("#back_top").click(function() { $('body,html').animate({ scrolltop: 0 },500); return false; }); // 初始化动画 // new wow().init(); //数字累加 // $('.counter').countup(); // 首页banner轮播 new swiper('.swiper_banner', { pagination: '.pagination_banner', paginationclickable: '.pagination_banner', autoplay:4000, }); // 首页合作伙伴轮播 new swiper('.swiper_clients', { slidesperview: 4, spacebetween: 30, autoplay:3000, breakpoints: { 750: { slidesperview: 4, spacebetween: 15 } } }); // 案例详情轮播 new swiper('.case_detial', { pagination: '.case_pagination', paginationclickable: true, autoplay:3000, }); /*产品中心切换*/ $(".pro_ul li").click(function() { var index=$(this).index(); $(this).addclass('active').siblings('li').removeclass('active'); $(".list_pro .m_list").eq(index).addclass('active').siblings('.m_list').removeclass('active'); }); /*案例中心切换*/ $(".case_ul li").click(function() { var index=$(this).index(); $(this).addclass('active').siblings('li').removeclass('active'); $(".list_case .m_list").eq(index).addclass('active').siblings('.m_list').removeclass('active'); }); /*全局搜索切换*/ $(".nei_serch .sec_nav li").click(function() { var index=$(this).index(); $(this).addclass('active').siblings('li').removeclass('active'); $(".nei_serch .sec_list").eq(index).addclass('active').siblings('.sec_list').removeclass('active'); }); });