0
スワイパースライダーで問題があります。私たちは2つの非表示のスライドをページに表示していますが、最初は正常に表示されていますが、他のものは動作しません。また、スライドは全幅あり、スクロールしません。スワイパー隠しdivs
var swiper2;
$(document).ready(function(){
swiper2 = new Swiper('.swiper-container-height-mod2', {
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
slidesPerView: 1,
paginationClickable: true,
spaceBetween: 30,
breakpoints: {
// when window width is <= 960px
767: {
slidesPerView: 1
}
},
});
});