Это то, что вы ищете?
var swiper = new Swiper('.swiper-container', {
effect: 'fade',
fadeEffect: {
crossFade: true
},
pagination: {
el: '.swiper-pagination',
type: 'fraction',
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
direction: 'horizontal',
loop: true,
speed: 1500,
slidesPerView: 1,
spaceBetween: 0,
mousewheel: false,
//slidePrevClass: 'swiper-slide-prev animated rotateOut',
//slideActiveClass: 'swiper-slide-active animated bounce',
//slideNextClass: 'swiper-slide-next animated rotateOut',
pagination: {
el: '.swiper-pagination',
type: 'custom',
clickable: true,
renderCustom: function (swiper, current, total) {
function numberAppend(d) { return (d < 10) ? '0' + d.toString() : d.toString(); }
return '<span>' + numberAppend(current) + '</span>' + ' <span></span> ' + '<span>' + numberAppend(total) + '</span>';
}
},
});
Я в основном обновил ваши js для использования эффекта затухания и удалил некоторые ваши анимации.