$(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'); }); });