갤러리 리스트 썸네일 클릭시 첨부파일 슬라이더 되게 가능할까요?
본문
안녕하세요!
위 스킨 사용해서 작업했는데, 팝업시 갤러리 목록 썸네일들이 넘어갑니다.
팝업시 뜨는 이미지를 본문에 첨부한 이미지 파일들로 슬라이드 하고싶으면 어떤 코드를 수정해야 하나요?
<?php
$image_org = '';
if ($list[$i]['is_notice']) { // 공지사항
$img_content = '<strong style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">공지</strong>';
} else {
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
$image_org = $thumb['ori'];
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';
} else {
$img_content = '<span class="no-img">no image</span>';
}
}
?>
이 부분에서 이미지를 불러오는 것 같습니다.
도와주세요 ㅠㅠ