jQuery(document).ready(function($){ // For Carousel Slider $( '.wpamc-swiper-carousel' ).each(function( index ) { var slider_id = $(this).parent().attr('id'); var slider_conf = $.parseJSON( $(this).closest('.wpamc-carousel-wrap').find('.wpamc-carousel-conf').text()); if( typeof(slider_id) != 'undefined' && slider_id != '' ) { var swiper = new Swiper('#'+slider_id, { slidesPerView : 'auto', centeredSlides : true, paginationHide : (slider_conf.pagination) == "true" ? false : true, paginationType : (slider_conf.pagination_type == 'fraction') ? 'fraction' : 'bullets', autoplay : (slider_conf.autoplay) == "true" ? parseInt(slider_conf.autoplay_speed) : '' , spaceBetween : 10, speed : parseInt(slider_conf.speed), loop : (slider_conf.loop) == "true" ? true : false, autoplayStopOnLast : (slider_conf.auto_stop) == "true" ? true : false, pagination : '.swiper-pagination', paginationClickable : true, nextButton : '.swiper-button-next', prevButton : '.swiper-button-prev', breakpoints: { // when window width is <= 320px 320: { slidesPerView : 'auto', }, // when window width is <= 480px 480: { slidesPerView : 'auto', }, // when window width is <= 640px 640: { slidesPerView : 'auto', } } }); } }); });