var swiper2 = new Swiper("#sauna-slide", { loop: true, effect: 'fade', autoplay: { delay: 4000, }, speed: 2000, // ページネーション pagination: { el: ".swiper-pagination", clickable: true, }, // 前後の矢印 navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev", }, } ); var swiper3 = new Swiper("#sauna-loop", { loop: true, // ループ有効 slidesPerView: 2, // 一度に表示する枚数 spaceBetween: 2, // スライド間の余白(ピクセル単位) speed: 7000, // ループの時間 allowTouchMove: false, // スワイプ無効 autoplay: { delay: 0, // 途切れなくループ }, breakpoints: { 1024: { slidesPerView: 3, }, }, });