갤러리 팝업 슬라이드 오류 도와주세요 ㅜㅜ
관련링크
본문
https://sir.kr/g5_skin/10023
↑ 사용한 갤러리 슬라이드 스킨
게시글을 클릭하면 팝업창이 뜨면서 사진이 여러 개일 경우 슬라이드가 되도록 하고 싶습니다
슬라이드까지는 되는데 게시글에 있는 사진들이 슬라이드 되는 것이 아니라
각 게시글의 첫번째 사진들이 슬라이드 되고 있습니다 ㅜㅜ
http://hcscaffold.co.kr/board/bbs/board.php?bo_table=test_report
이 페이지 작업 중입니다.
안에는 4~6개의 사진들이 있습니다.
// list.skin.php
<script type="text/javascript">
$(document).ready(function($) {
$('.popup-gallery').magnificPopup({
delegate: 'a',
type: 'image',
tLoading: 'Loading image #%curr%...',
//mainClass: 'mfp-img',
gallery: {
enabled: true,
navigateByImgClick: true,
preload: [0,1] // Will preload 0 - before current, and 1 after the current image
},
image: {
tError: '<a href="%url%">The image #%curr%</a> could not be loaded.',
titleSrc: function(item) {
return item.el.attr('title') + '<small>by '+item.el.attr('writer')+' ('+item.el.attr('date')+')'+'</small>';
}
},
});
});
</script>