var $win = $(window); $win.on('load resize', function() { var windowWidth = window.innerWidth; if (windowWidth > 1024) { $(function(){ var swiper = new Swiper('.slide1-swiper1', { effect: 'slide', grabCursor: true, slidesPerView: 4, loop: true, autoplay: { delay: 5000, disableOnInteraction: false,}, coverflowEffect: { rotate: 50, stretch: 0, depth: 100, modifier: 1, slideShadows : true,}, pagination: {el: '.swiper-pagination', type: 'bullets', bulletElement: 'span', hideOnClick: false, dynamicBullets: true, clickable: true,}, navigation: {nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, scrollbar: {el: '.swiper-scrollbar', draggable: true, hide: true, draggable: true, snapOnRelease: true, dragSize: 'auto',}, }); }); } else if (windowWidth > 600) { $(function(){ var swiper = new Swiper('.slide1-swiper1', { effect: 'slide', grabCursor: true, slidesPerView: 3, loop: true, autoplay: { delay: 5000, disableOnInteraction: false,}, coverflowEffect: { rotate: 50, stretch: 0, depth: 100, modifier: 1, slideShadows : true,}, pagination: {el: '.swiper-pagination', type: 'bullets', bulletElement: 'span', hideOnClick: false, dynamicBullets: true, clickable: true,}, navigation: {nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, scrollbar: {el: '.swiper-scrollbar', draggable: true, hide: true, draggable: true, snapOnRelease: true, dragSize: 'auto',}, }); }); } else { $(function(){ var swiper = new Swiper('.slide1-swiper1', { effect: 'slide', grabCursor: true, slidesPerView: 2, loop: true, autoplay: { delay: 5000, disableOnInteraction: false,}, coverflowEffect: { rotate: 50, stretch: 0, depth: 100, modifier: 1, slideShadows : true,}, pagination: {el: '.swiper-pagination', type: 'bullets', bulletElement: 'span', hideOnClick: false, dynamicBullets: true, clickable: true,}, navigation: {nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, scrollbar: {el: '.swiper-scrollbar', draggable: true, hide: true, draggable: true, snapOnRelease: true, dragSize: 'auto',}, }); }); } });