基本設定
var swiper = new Swiper('#maincatch', {
autoplay: {
delay: 3000,//留まっている時間
disableOnInteraction: true
},
loop: true,
speed: 2000,//+エフェクトされてる時間
effect: 'fade',
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
}
});
スライド番号の入ったclass名を追加
on: {
slideChange: function () {
jQuery('.swiper-slide-content').css('opacity', '0');
realIndex = this.realIndex + 1;
jQuery('.swiper-slide-content-' + realIndex).css('opacity', '1');
},
},