Показать сообщение отдельно
  #2 (permalink)  
Старый 08.05.2019, 19:14
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,138

Swiper пагинация
dany994,
var swiper = new Swiper('.swiper-container', {

    navigation: {
        nextEl: '.swiper-button-next',
        prevEl: '.swiper-button-prev'
    },

    direction: 'horizontal',
    loop: true,
    slidesPerView: 1,
    spaceBetween: 0,
    mousewheel: true,

    pagination: {
        el: '.swiper-pagination',
        type: 'custom',
        renderCustom: function(swiper, current, total) {
            return (current + '').padStart(2, "0") + ' - ' + (total + '').padStart(2, "0");
        }
    }
});

Internet Explorer

Последний раз редактировалось рони, 08.05.2019 в 19:16.
Ответить с цитированием