$(function () { var slide = $('.highlights .swiper-container .swiper-slide'); if (slide.length >= 2) { $('.highlights').addClass('has'); new Swiper('.highlights .swiper-container', { loop: true, navigation: { nextEl: '.highlights .button-next', prevEl: '.highlights .button-prev', }, pagination: { el: '.highlights .pagination', type: 'bullets' }, breakpoints: { 1200: { pagination: { type: 'fraction' }, } } }); } else { $('.highlights').addClass('no'); } });