(function($) { "use strict"; if (typeof window.initRollingBannerFooter === 'function') { // return; } window.initRollingBannerFooter = function(moduleId) { const $module = $('#' + moduleId); if (!$module.length) return; const $swiperContainer = $module.find('.swiper-container'); const autoplayDelay = parseInt($swiperContainer.data('autoplay-delay'), 10) || 3000; const slidesPerViewPC = parseInt($swiperContainer.data('slides-per-view'), 10) || 6; new Swiper($swiperContainer[0], { // slidesPerView: 'auto', // πŸ’‘ [μ‚­μ œ] μžλ™ λ„ˆλΉ„ λŒ€μ‹  개수 μ§€μ • spaceBetween: 20, loop: true, autoplay: { delay: autoplayDelay, disableOnInteraction: false, }, navigation: { nextEl: $module.find('.swiper-button-next')[0], prevEl: $module.find('.swiper-button-prev')[0], }, observer: true, observeParents: true, // πŸ’‘ [핡심 μˆ˜μ •] λ°˜μ‘ν˜• Breakpoints μ„€μ • breakpoints: { // 320px 이상일 λ•Œ 320: { slidesPerView: 3, spaceBetween: 10 }, // 768px 이상일 λ•Œ (νƒœλΈ”λ¦Ώ) 768: { slidesPerView: 4, spaceBetween: 20 }, // 1024px 이상일 λ•Œ (PC) 1024: { slidesPerView: slidesPerViewPC, spaceBetween: 20 }, } }); }; $(function() { $('.rolling-banner-footer').each(function() { window.initRollingBannerFooter($(this).attr('id')); }); }); })(jQuery);