최신글 슬라이딩 갤러리 오류 좀 봐주세요... ㅠ.ㅠ > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

최신글 슬라이딩 갤러리 오류 좀 봐주세요... ㅠ.ㅠ 정보

최신글 슬라이딩 갤러리 오류 좀 봐주세요... ㅠ.ㅠ

본문

안녕하세요.

슬라이딩 최신글 갤러리 사용했는데요.
잘 돌아갔었는데.. 오늘 보니까, 왼쪽 버튼을 클릭하면 이미지가 두 개씩 생성되어 나오네요.. ㅠ.ㅠ

왜 그런건지.... 좀 봐주세요.

(저 심하게 초보입니다.. 자세한 설명 부탁드립니당.. ㅠ.ㅠ)


////
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$latest_skin_path/skin.lib.php");

$img_width = 164; // 이미지 가로 사이즈
$img_height = 180; // 이미지 세로 사이즈

$frame_width = 746; // 가로길이

$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/latest_thumb';

@mkdir($thumb_path, 0707);
@chmod($thumb_path, 0707);
?>

<!--최신글, 이미지, 내용 시작-->
<script type="text/javascript" src="<?=$latest_skin_path?>/js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="<?=$latest_skin_path?>/js/jquery.imageScroller.js"></script>

<style type="text/css">
body {}
img {border:0}
a {text-decoration:none}

/*스크롤러 스타일*/

div#scroller {background-color:#f7f7f7; position:relative;height:227px; width:<?=$frame_width?>; padding:0 10px;margin:0;clear:both;overflow:hidden;border:1px #ddd solid}

/*좌우버튼*/
div.button {height:30px;}
#btn1, #btn2 {cursor:pointer}

ul#scrollerFrame {width:1000px; padding:0;margin:0;list-style:none;}
ul#scrollerFrame li {position:relative;float:left; margin:0 10 0 10px;width:160px;height:140px;}

/*가격 및 설명 부분*/
ul#scrollerFrame li p {margin:0;padding:0}
ul#scrollerFrame li p.price{font-family:verdana;font-size:12px;font-weight:bold;margin-top:7px;text-align:center;color:#F7F7F7}
ul#scrollerFrame li p.comment{font-family:돋움;font-size:11px;letter-spacing:-1px;margin-top:4px;padding:0 5px;text-align:center;color:#F7F7F7;line-height:130%}

/*붙박이 아이콘 설정*/
.besticon {position:absolute;top:0;left:0}
.price {font-family:돋움;font-size:12px;font-weight:bold;padding-top:7px;text-align:center;color:#F7F7F7}
</style>         

             
<script type="text/javascript">

$(function(){
   
$("#scroller").imageScroller({
next:"btn1",                  //다음 버튼 ID값
prev:"btn2",                  //이전 버튼 ID값
frame:"scrollerFrame",        //스크롤러 프레임 ID값 
width:164,                    //이미지 가로 크기
child:"li",                    //스크롤 지정 태그
auto:true                      //오토 롤링 (해제는 false)
});
});
</script>

<div id="scroller">
<div class="button">

<span id="btn2" style="float:right;margin:5px 0 0 0;"><img src="<?=$g4[path]?>/img/next.png"></span>
<span id="btn1" style="float:right;margin:5px 5px 0 0;"><img src="<?=$g4[path]?>/img/pre.png"></span>
</div>

<ul id="scrollerFrame">
        <? for ($i=0; $i<count($list); $i++) { ?>
<li>
<?
if($list[$i][file][0][view]){
$src = $list[$i][file][0][path]."/".$list[$i][file][0][file];
$get_img = getimagesize($src); // 파일정보를 가져옴
// 관리자가 이미지 사이즈를 바꾸었을때를 대비하여 리사이징 크기를 이름에 포함과 이미지 재 첨부시 바뀜
$img_step1 = explode("_",$list[$i][file][0][file]);
$img_step2 = explode(".",$img_step1[1]);
$new_imgname = $img_step2[0];
$thumb_file_list = "{$thumb_path}/{$re_img_width}x{$re_img_height}_{$new_imgname}_{$list[$i][wr_id]}_list";
if(!file_exists($thumb_file_list)){
// gd lib 체크
$gd = gd_info();
$gdversion = substr(preg_replace("/[^0-9]/", "", $gd['GD Version']), 0, 2); // gd 버전이 2.0 이상인지 체크
if(!$gdversion){
$thumb_file_view = $src; // gd 2.0 이하면 강제적으로 줄임
}else{
if($img_width > $get_img[0] || $img_height > $get_img[1]){
$thumb_file_list = $src;
}else{
createThumb_list($img_width,$img_height,$src, $thumb_file_list, $get_img); // list 페이지 썸네일
}
}
}
                                                echo '<div align="center">';
                                             
$img = "<a href='{$list[$i]['href']}'><img src=\"$thumb_file_list\" border=\"0\" width=\"$img_width\" height=\"$img_height\"/></a><br/><br/><br/><br/>";
}else{
// no 이미지를 비율적으로 만들어났음
$img = "<a class=price' href='{$list[$i]['href']}'><img src=\"$latest_skin_path/img/no_image.gif\" border=\"0\" height=\"{$img_height}\" width=\"{$img_width}\"/><BR><span style=\"font-size:9pt;\"><font face=\"돋움\" color=\"#333333\">{$list[$i]['subject']}</span>*/</a>";
}
echo $img;
                                                echo '</div>';

?>
</li>

<? } ?>
</ul>
</div>
///

댓글 전체

올려주신 소스의 문제라기 보다 아래의 정비갤러리와의 스크립트 충돌 때문인것 같네요.

정비갤러리 최신글 소스에서

<!-- 요부분 -->
<script type="text/javascript">

$(function(){
   
$("#scroller2").imageScroller({
next:"btn1",                  //다음 버튼 ID값
prev:"btn2",                  //이전 버튼 ID값
frame:"scrollerFrame",        //스크롤러 프레임 ID값 
width:164,                    //이미지 가로 크기
child:"li",                    //스크롤 지정 태그
auto:true                      //오토 롤링 (해제는 false)
});
});
</script>
<!-- 요부분까지 삭제-->

<div id="scroller2">  ....

스크립트를 삭제해보세요
전체 66,554 |RSS
그누4 질문답변 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT