Thay đổi tham số của swiper sau khi init

Nội dung

Để thay đổi (modify) các tham số mặc định của swiper slide sau khi init chúng ta làm như sau:

				
					<script>
jQuery( document ).ready( function() {
   const imageCarousel = jQuery ( '.freeSwiper .swiper-container' ),
      swiperInstance = imageCarousel.data( 'swiper' );

   swiperInstance.params.slidesPerView = 'auto';
   swiperInstance.params.freeMode.enabled = true;
   swiperInstance.params.freeModeSticky = false;
   swiperInstance.params.mousewheel = true;

   swiperInstance.update();
}); 
</script>