$(function() { var w = setInterval(function() { $("img[src*='.jpg_']").each(function() { $(this).attr("src", $(this).attr("src").split(".jpg_")[0] + ".jpg"); }); $("img[src*='.png_']").each(function() { $(this).attr("src", $(this).attr("src").split(".png_")[0] + ".png"); }); }, 100); setTimeout(function(){ $(".jom_loopitem img").each(function(){ let srcThis = $(this).attr('src'); console.log(srcThis); $(this).parents(".jom_picGallery").attr('data-src',srcThis); }); },500); $('[id*="PhotoList_jom01"]').lightGallery({selector: '.jom_picGallery',}); }); $require(['swiper'], function () { var mySwiper = new Swiper('.honoRBox_huanjing', { initialSlide: 0, slidesPerView: 2, centeredSlides: false, spaceBetween: 10, navigation: { nextEl: '.honoRBoxBB_huanjing .swiper-button-next', prevEl: '.honoRBoxBB_huanjing .swiper-button-prev', }, breakpoints: { 768: { slidesPerView: 4, centeredSlides: false, spaceBetween: 10, initialSlide: 1, }, } }) })