$(function () { if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) { var wow = new WOW({ boxClass: 'wow', animateClass: 'animated', offset: 0, mobile: false, live: true }); wow.init(); }; //轮播图 var bannerSwiper = new Swiper('.bannerList', { slidesPerView: 1, // init: false, autoplay: $(".bannerList li").length <= 1 ? false : { delay: 3000, disableOnInteraction: false, }, loop: $(".bannerList li").length > 1 ? true : false, pagination: { el: '.swiper-pagination', }, navigation: { nextEl: '.banner-swiper-next', prevEl: '.banner-swiper-prev', }, }); //行业解决方案 $(".programme .type a").eq(0).addClass("on"); var programmeSwiper = new Swiper('#J_programme', { slidesPerView: 1, on: { slideChangeTransitionEnd: function () { $(".programme .type a").eq(this.activeIndex).addClass("on").siblings().removeClass("on"); }, }, }); $(".programme .type a").hover(function () { programmeSwiper.slideTo($(this).index()); }) //热销产品 var pLength = $(".productImgList li").length; var productSwiper = new Swiper('#J_productList', { slidesPerView: 2, // init: false, loop: pLength > 2 ? true : false, autoplay: pLength <= 2 ? false : { delay: 3000, disableOnInteraction: false, }, navigation: { nextEl: '.product-swiper-next', prevEl: '.product-swiper-prev', }, breakpoints: { 768: { slidesPerView: 4, loop: pLength > 4 ? true : false, autoplay: pLength <= 4 ? false : { delay: 3000, disableOnInteraction: false, }, }, } }); });