묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
자바에 php소스 넣기요
2005.04.29 11:31
사진 게시판에서 사진을 클릭했을 때 새창이 아니라 슬라이드처럼 뜨게 하려고 하는데요,
지금 쓰고 있는 갤러리 스킨에 적용을 시키기가 어렵네요ㅜ.ㅜ
우선 자바 소스는요
// 이미지 보기
function ImageView(image,type)
{
if(type == 1) {
iview.style.top = document.body.scrollTop + 30;
iview.style.left= 30;
iview.style.visibility = "visible";
iview.innerHTML = "<img src='"+image+"' border='2'>";
} else {
newWin("/convert/image_view.html?image=" + image, "mainview", 100, 100);
}
}
이거구요, 이걸 적용시킨 html은
<a href="javascript:ImageZoom('iview', '파일이름')"><img src='파일이름' border='0'></a>
이런 식으로 넣어야하는데 파일이름을 어떤 식으로 넣어야 하는지 모르겠습니다.
제가 쓰고 있는 갤러리 스킨 소스 중에 수정해야 할 부분은
"<a
href='#' onclick="new_win=window.open('$dir/view_flash.php?file=$data[file_name1]','img_win','left=0,top=0,width=450, height=400, resizable=yes, scrollbar=no,status=no'); new_win.resizeTo(450,400); new_win.focus()"
onFocus="this.blur();"
>";
<td valign=top align=center style='padding-left:5; padding-top:5; padding-right:5; padding-bottom:5;'>
<?=$view_img?><img src=<?=$img_src?> width=<?=$x_size?> height=<?=$y_size?> border=0></a>
</td>
이 부분인 것 같은데
어떤 식으로 적용해야 할지 혹시 아시는 분 계시면 가르쳐 주세요^^;;
지금 쓰고 있는 갤러리 스킨에 적용을 시키기가 어렵네요ㅜ.ㅜ
우선 자바 소스는요
// 이미지 보기
function ImageView(image,type)
{
if(type == 1) {
iview.style.top = document.body.scrollTop + 30;
iview.style.left= 30;
iview.style.visibility = "visible";
iview.innerHTML = "<img src='"+image+"' border='2'>";
} else {
newWin("/convert/image_view.html?image=" + image, "mainview", 100, 100);
}
}
이거구요, 이걸 적용시킨 html은
<a href="javascript:ImageZoom('iview', '파일이름')"><img src='파일이름' border='0'></a>
이런 식으로 넣어야하는데 파일이름을 어떤 식으로 넣어야 하는지 모르겠습니다.
제가 쓰고 있는 갤러리 스킨 소스 중에 수정해야 할 부분은
"<a
href='#' onclick="new_win=window.open('$dir/view_flash.php?file=$data[file_name1]','img_win','left=0,top=0,width=450, height=400, resizable=yes, scrollbar=no,status=no'); new_win.resizeTo(450,400); new_win.focus()"
onFocus="this.blur();"
>";
<td valign=top align=center style='padding-left:5; padding-top:5; padding-right:5; padding-bottom:5;'>
<?=$view_img?><img src=<?=$img_src?> width=<?=$x_size?> height=<?=$y_size?> border=0></a>
</td>
이 부분인 것 같은데
어떤 식으로 적용해야 할지 혹시 아시는 분 계시면 가르쳐 주세요^^;;