//移动端导航 $(".selectBut").click(function() { $(".navm-box").toggleClass("act"); $("body").toggleClass("navShow"); if($(".selectBut").hasClass("hd1-aon1")) { $(this).removeClass("hd1-aon1"); $(".masklayer").hide() } else { $(this).addClass("hd1-aon1"); $(".masklayer").fadeIn("slow") } }) $(".nav-wrap .icon-jia").click(function(){ if($(this).parent().find("dl").is(":hidden")){ $(this).parent().find("dl").show(500); $(this).css("transform","rotate(180deg)") }else{ $(this).parent().find("dl").hide(500); $(this).css("transform","rotate(0deg)") } }); //搜索 $('.search').click(function(){ $('.search_wrap').fadeIn(); }); $('.search_wrap .bck').click(function(){ $('.search_wrap').fadeOut("slow"); }); //banner var mySwiper1 = new Swiper('.banner .swiper-container', { speed:1200, centeredSlides: true, pagination: { el: '.banner .swiper-pagination', clickable: true, } }); //学院新闻 var scroll_1 = new Swiper('.news-scroll-1 .swiper-container', { speed:1200, loop:true, centeredSlides: true, autoplay: { delay: 5000, disableOnInteraction: false, }, pagination: { el: '.news-scroll-1 .swiper-pagination', clickable: true, } }); //招生工作/培养工作 var mySwiper3 = new Swiper('.pb-left .pbox .swiper-container', { speed: 500, effect: 'fade', on: { slideChangeTransitionStart: function () { $(".pb-left .qh-title ul .on").removeClass('on'); $(".pb-left .qh-title ul li").eq(this.activeIndex).addClass('on'); } } }); var mySwiper5 = new Swiper('.pb-left .more .swiper-container', { speed: 500, effect: 'fade', on: { slideChangeTransitionStart: function () { $(".pb-left .qh-title ul .on").removeClass('on'); $(".pb-left .qh-title ul li").eq(this.activeIndex).addClass('on'); } } }); $(".pb-left .qh-title ul li").on('click', function (e) { $(".pb-left .qh-title ul .on").removeClass('on'); $(this).addClass('on'); mySwiper3.slideTo($(this).index()); mySwiper5.slideTo($(this).index()); }); //专业学位/学位管理 var mySwiper6 = new Swiper('.pb-right .pbox .swiper-container', { speed: 500, effect: 'fade', on: { slideChangeTransitionStart: function () { $(".pb-right .qh-title ul .on").removeClass('on'); $(".pb-right .qh-title ul li").eq(this.activeIndex).addClass('on'); } } }); var mySwiper7 = new Swiper('.pb-right .more .swiper-container', { speed: 500, effect: 'fade', on: { slideChangeTransitionStart: function () { $(".pb-right .qh-title ul .on").removeClass('on'); $(".pb-right .qh-title ul li").eq(this.activeIndex).addClass('on'); } } }); $(".pb-right .qh-title ul li").on('click', function (e) { $(".pb-right .qh-title ul .on").removeClass('on'); $(this).addClass('on'); mySwiper6.slideTo($(this).index()); mySwiper7.slideTo($(this).index()); }); //快捷链接 var mySwiper4 = new Swiper('.partc .swiper-container', { slidesPerView: 5, //loop:true, spaceBetween: 30, autoplay: { delay: 5000, disableOnInteraction: false, }, breakpoints: { 1160:{ slidesPerView: 4, }, 980:{ slidesPerView: 3, }, 680:{ slidesPerView: 2, }, 420:{ slidesPerView: 1, } } });