//移动端导航 $("#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_m').click(function() { $(".searchm_box").fadeIn(); }); $('.searchm_box .icon-close').click(function() { $(".searchm_box").fadeOut() }); //banner var mySwiper1 = new Swiper('.banner', { speed:1200, loop:true, centeredSlides: true, //effect: 'fade', autoplay: { delay: 5000, disableOnInteraction: false, }, pagination: { el: '.banner .swiper-pagination', clickable: true, } }); //鼠标覆盖停止自动切换 mySwiper1.el.onmouseover = function(){ mySwiper1.autoplay.stop(); } //鼠标离开开始自动切换 mySwiper1.el.onmouseout = function(){ mySwiper1.autoplay.start(); } //滚动新闻 var mySwiper2 = new Swiper('.pal .swiper-container', { speed:1200, loop:true, autoplay: { delay: 3000, disableOnInteraction: false, }, navigation: { nextEl: '.pal .swiper-button-next', prevEl: '.pal .swiper-button-prev', }, pagination: { el: '.pal .swiper-pagination', clickable: true, } }); var mySwiper3 = new Swiper('.pclist.swiper-container', { speed:1200, loop:true, slidesPerView : 3, spaceBetween : 20, autoplay: { delay: 3000, disableOnInteraction: false, }, navigation: { nextEl: '.pclist .swiper-button-next', prevEl: '.pclist .swiper-button-prev', }, pagination: { el: '.pal .swiper-pagination', clickable: true, }, breakpoints: { 420: { slidesPerView: 1, spaceBetween: 20 }, 680: { slidesPerView:2, spaceBetween: 20 } }, }); //链接下拉 $(".icon-down").click(function(){ $(this).parents(".plink").find(".linklist").slideDown(300); $(this).addClass("on"); }); $(".plink").mouseleave(function(){ $(this).find(".icon-down").removeClass('on'); $(this).find(".linklist").slideUp(); });