$(document).ready(function () { // 轮播图 if (isFrontEnv()) { var smallImgSwiper = new Swiper('.smallImgContaienr', { spaceBetween: 10, slidesPerView: 8, freeMode: true, navigation: { nextEl: '.pro-right', prevEl: '.pro-left', }, watchSlidesVisibility: true, watchSlidesProgress: true, }); var bigImgSwiper = new Swiper('.bigImgContaienr', { spaceBetween: 10, navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, thumbs: { swiper: smallImgSwiper } }); // 事件 $('.pro-left').click(function () { bigImgSwiper.slidePrev(); }); $('.pro-right').click(function () { bigImgSwiper.slideNext(); }); }; })