$(document).ready(function () { const swiperExhib = new Swiper('.swiperExhib', { slidesPerView: 1, spaceBetween: 10, direction: getDirection(), loop: true, preventClicks: false, preventClicksPropagation: false, autoplay: { delay: 3000, }, breakpoints: { 600: { slidesPerView: 2, }, }, on: { resize: function () { swiperExhib.changeDirection(getDirection()); }, }, }); function getDirection() { var windowWidth = window.innerWidth; var direction = window.innerWidth <= 0 ? 'vertical' : 'horizontal'; return direction; } });