"틀:이미지스와이퍼"의 두 판 사이의 차이

광주문화예술인문스토리플랫폼
이동: 둘러보기, 검색
69번째 줄: 69번째 줄:
 
         },
 
         },
 
       });
 
       });
 
+
// 이미지 로딩 실패 시 슬라이드 제거 후 Swiper 업데이트
      // 이미지 로딩 타임아웃 및 에러 처리
+
document.querySelectorAll('.image-swiper-container .swiper-image').forEach(function(img) {
      document.querySelectorAll('.image-swiper-container .swiper-image').forEach(function(img) {
+
img.addEventListener('error', function(e) {
        var timeout;
+
console.log(e)
        var removeSlide = function() {
+
this.closest('.swiper-slide').remove();
          clearTimeout(timeout);
+
swiper.update();
          img.closest('.swiper-slide').remove();
+
});
          swiper.update();
+
        timeout = setTimeout(function() {
        };
 
 
 
        // 3초 타임아웃 설정
 
        timeout = setTimeout(function() {
 
 
           if (!img.complete || img.naturalHeight === 0) {
 
           if (!img.complete || img.naturalHeight === 0) {
 
             removeSlide();
 
             removeSlide();
 
           }
 
           }
         }, 1500);
+
         }, 3000);
  
 
         // 이미지 로딩 성공 시 타임아웃 취소
 
         // 이미지 로딩 성공 시 타임아웃 취소
95번째 줄: 91번째 줄:
 
           removeSlide();
 
           removeSlide();
 
         });
 
         });
      });
+
});
 
     });
 
     });
 +
 
   </script>
 
   </script>
 
}}
 
}}
 
</includeonly>
 
</includeonly>

2025년 12월 24일 (수) 11:46 판