그누보드 질문에도 올렸는데.. 이건 제이쿼리 문제인것것같아 여기로 다시올립니다.
http://best.milkyxy.milkyxy.gethompy.com/nbbs/index1.php
최근 게시물 설치했는데요..
마우스 클릭시 큰이미지 나오는게아니라 오버시 나오게끔했음좋겠는데.. 어떻게 수정해야하나요?
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_width = 739; //큰 썸네일 가로
$img_height = 391; //큰 썸네일 세로
$img_quality = 100; //썸네일 퀄리티
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb_big4';
$ym = date("ym", $g4[server_time]);
@mkdir($thumb_path, 0707);
@chmod($thumb_path, 0707);
//코멘트와 리플글은 제외
$sql = " select * from $tmp_write_table
where wr_comment = '' and wr_reply = ''
order by wr_id DESC LIMIT 0, 1 ";
$result = sql_query($sql);
$last_con = sql_fetch_array($result);
?>
<link rel="stylesheet" type="text/css" href="<?=$latest_skin_path?>/style.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<h4><a href="<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>"><?=$latest_title?></a></h4>
<div id="featured" >
<ul class="ui-tabs-nav">
<?
for ($i=0; $i<count($list); $i++) {
$j = $i + 1;
if ($j == "1") {
$selected='ui-tabs-selected';
} else {
$selected='';}
//썸네일 생성
$thumfile = "";
$thumb = $thumb_path.'/'.$list[$i][wr_id];
// 썸네일 이미지가 존재하지 않는다면
if (!file_exists($thumb)) {
$file = $list[$i][file][0][path] .'/'. $list[$i][file][0][file];
// 업로드된 파일이 이미지라면
if (preg_match("/\.(jp[e]?g|gif|png)$/i", $file) && file_exists($file)) {
$size = getimagesize($file);
if ($size[2] == 1)
$src = imagecreatefromgif($file);
else if ($size[2] == 2)
$src = imagecreatefromjpeg($file);
else if ($size[2] == 3)
$src = imagecreatefrompng($file);
else
break;
$rate = $img_width / $size[0];
$height = (int)($size[1] * $rate);
// 계산된 썸네일 이미지의 높이가 설정된 이미지의 높이보다 작다면
if ($height < $img_height)
// 계산된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $height);
else
// 설정된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $img_height);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $img_width, $height, $size[0], $size[1]);
imagejpeg($dst, $thumb_path.'/'.$list[$i][wr_id], $img_quality);
chmod($thumb_path.'/'.$list[$i][wr_id], 0606);
} else { //게디터에서 삽입한 이미지 뽑자ㅠㅠ
$edit_img = $list[$i]['wr_content'];
if (eregi("data/cheditor4/{$ym}/[^<>]*\.(gif|jpg|png|bmp)", $edit_img, $tmp)) { // data/geditor------
$file = './' . $tmp[0]; // 파일명
$size = getimagesize($file);
if ($size[2] == 1)
$src = imagecreatefromgif($file);
else if ($size[2] == 2)
$src = imagecreatefromjpeg($file);
else if ($size[2] == 3)
$src = imagecreatefrompng($file);
else
break;
$rate = $img_width / $size[0];
$height = (int)($size[1] * $rate);
// 계산된 썸네일 이미지의 높이가 설정된 이미지의 높이보다 작다면
if ($height < $img_height)
// 계산된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $height);
else
// 설정된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $img_height);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $img_width, $height, $size[0], $size[1]);
imagejpeg($dst, $thumb_path.'/'.$list[$i][wr_id], $img_quality);
chmod($thumb_path.'/'.$list[$i][wr_id], 0606);
}
}
}
if (file_exists($thumb))
$thumfile = "$thumb";
else
//이미지가 없으면
$thumfile="$latest_skin_path/img/noimg.gif";
//이미지가 아니네
if(preg_match("/\.(swf|wma|asf)$/i","$file") && file_exists($file))
{ $thumfile = "<script>doc_write(flash_movie('$file', 'flash$i', '$img_width', '$img_height', 'transparent'));</script>"; }
?>
<li class="ui-tabs-nav-item <?=$selected?>" id="nav-fragment-<?=$j?>"><a href="#fragment-<?=$j?>"><img src="<?=$thumfile?>" alt="" width="80" height="50" ></a></li>
<? }?>
</ul>
<!-- First Content -->
<?
for ($i=0; $i<count($list); $i++) {
$thumfile2 = $thumb_path.'/'.$list[$i][wr_id];
$j = $i + 1;
if ($j == "1") {
$hide='';
} else {
$hide='ui-tabs-hide'; }
?>
<div id="fragment-<?=$j?>" class="ui-tabs-panel <?=$hide?>" style="">
<a href='<?=$list[$i][href]?>'><img src="<?=$thumfile2?>" alt="" /></a>
<div class="info" >
<h2><a href='<?=$list[$i][href]?>'><strong><?=$list[$i][subject]?></strong></a></h2>
<p><a href="<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>"><?=cut_str(strip_tags($list[$i][wr_content]),120,"...더보기")?></a></p>
</div>
</div>
<? }?>
</div>
</div>
최근 게시물 설치했는데요..
마우스 클릭시 큰이미지 나오는게아니라 오버시 나오게끔했음좋겠는데.. 어떻게 수정해야하나요?
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$img_width = 739; //큰 썸네일 가로
$img_height = 391; //큰 썸네일 세로
$img_quality = 100; //썸네일 퀄리티
$data_path = $g4[path]."/data/file/$bo_table";
$thumb_path = $data_path.'/thumb_big4';
$ym = date("ym", $g4[server_time]);
@mkdir($thumb_path, 0707);
@chmod($thumb_path, 0707);
//코멘트와 리플글은 제외
$sql = " select * from $tmp_write_table
where wr_comment = '' and wr_reply = ''
order by wr_id DESC LIMIT 0, 1 ";
$result = sql_query($sql);
$last_con = sql_fetch_array($result);
?>
<link rel="stylesheet" type="text/css" href="<?=$latest_skin_path?>/style.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<h4><a href="<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>"><?=$latest_title?></a></h4>
<div id="featured" >
<ul class="ui-tabs-nav">
<?
for ($i=0; $i<count($list); $i++) {
$j = $i + 1;
if ($j == "1") {
$selected='ui-tabs-selected';
} else {
$selected='';}
//썸네일 생성
$thumfile = "";
$thumb = $thumb_path.'/'.$list[$i][wr_id];
// 썸네일 이미지가 존재하지 않는다면
if (!file_exists($thumb)) {
$file = $list[$i][file][0][path] .'/'. $list[$i][file][0][file];
// 업로드된 파일이 이미지라면
if (preg_match("/\.(jp[e]?g|gif|png)$/i", $file) && file_exists($file)) {
$size = getimagesize($file);
if ($size[2] == 1)
$src = imagecreatefromgif($file);
else if ($size[2] == 2)
$src = imagecreatefromjpeg($file);
else if ($size[2] == 3)
$src = imagecreatefrompng($file);
else
break;
$rate = $img_width / $size[0];
$height = (int)($size[1] * $rate);
// 계산된 썸네일 이미지의 높이가 설정된 이미지의 높이보다 작다면
if ($height < $img_height)
// 계산된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $height);
else
// 설정된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $img_height);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $img_width, $height, $size[0], $size[1]);
imagejpeg($dst, $thumb_path.'/'.$list[$i][wr_id], $img_quality);
chmod($thumb_path.'/'.$list[$i][wr_id], 0606);
} else { //게디터에서 삽입한 이미지 뽑자ㅠㅠ
$edit_img = $list[$i]['wr_content'];
if (eregi("data/cheditor4/{$ym}/[^<>]*\.(gif|jpg|png|bmp)", $edit_img, $tmp)) { // data/geditor------
$file = './' . $tmp[0]; // 파일명
$size = getimagesize($file);
if ($size[2] == 1)
$src = imagecreatefromgif($file);
else if ($size[2] == 2)
$src = imagecreatefromjpeg($file);
else if ($size[2] == 3)
$src = imagecreatefrompng($file);
else
break;
$rate = $img_width / $size[0];
$height = (int)($size[1] * $rate);
// 계산된 썸네일 이미지의 높이가 설정된 이미지의 높이보다 작다면
if ($height < $img_height)
// 계산된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $height);
else
// 설정된 이미지 높이로 복사본 이미지 생성
$dst = imagecreatetruecolor($img_width, $img_height);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $img_width, $height, $size[0], $size[1]);
imagejpeg($dst, $thumb_path.'/'.$list[$i][wr_id], $img_quality);
chmod($thumb_path.'/'.$list[$i][wr_id], 0606);
}
}
}
if (file_exists($thumb))
$thumfile = "$thumb";
else
//이미지가 없으면
$thumfile="$latest_skin_path/img/noimg.gif";
//이미지가 아니네
if(preg_match("/\.(swf|wma|asf)$/i","$file") && file_exists($file))
{ $thumfile = "<script>doc_write(flash_movie('$file', 'flash$i', '$img_width', '$img_height', 'transparent'));</script>"; }
?>
<li class="ui-tabs-nav-item <?=$selected?>" id="nav-fragment-<?=$j?>"><a href="#fragment-<?=$j?>"><img src="<?=$thumfile?>" alt="" width="80" height="50" ></a></li>
<? }?>
</ul>
<!-- First Content -->
<?
for ($i=0; $i<count($list); $i++) {
$thumfile2 = $thumb_path.'/'.$list[$i][wr_id];
$j = $i + 1;
if ($j == "1") {
$hide='';
} else {
$hide='ui-tabs-hide'; }
?>
<div id="fragment-<?=$j?>" class="ui-tabs-panel <?=$hide?>" style="">
<a href='<?=$list[$i][href]?>'><img src="<?=$thumfile2?>" alt="" /></a>
<div class="info" >
<h2><a href='<?=$list[$i][href]?>'><strong><?=$list[$i][subject]?></strong></a></h2>
<p><a href="<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>"><?=cut_str(strip_tags($list[$i][wr_content]),120,"...더보기")?></a></p>
</div>
</div>
<? }?>
</div>
</div>
댓글 3개
gilynh
13년 전
jQuery 스크립트가 나타난 부분이 확인이 안되서 자세한 설명은 어렵습니다만,
click 매서드 대신에 mouseover 매서드를 사용하시면 됩니다.
이를 테면,
$("#div").click(function() {
/* 클릭시 실행될 스크립트 */
});
->
$("#div").mouseover(function() {
/* 마우스오버시 실행될 스크립트 */
});
click 매서드 대신에 mouseover 매서드를 사용하시면 됩니다.
이를 테면,
$("#div").click(function() {
/* 클릭시 실행될 스크립트 */
});
->
$("#div").mouseover(function() {
/* 마우스오버시 실행될 스크립트 */
});
cookieyou
13년 전
답변주셔서.. 감사..
어딜 고쳐야 되는지 몰라서 ㅋ
다른 플러그인 http://malsup.com/jquery/cycle/... 이쪽사이트에 비슷한게 있어서 그걸로 들에서 확인해서 교체했습니다.
어딜 고쳐야 되는지 몰라서 ㅋ
다른 플러그인 http://malsup.com/jquery/cycle/... 이쪽사이트에 비슷한게 있어서 그걸로 들에서 확인해서 교체했습니다.
드래그홈2
13년 전
css만 제대로 숙지하셔도 같은 효과를 볼 것 같은데요
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 6830 |
112211dd
|
11년 전 | 797 | |
| 6829 |
진짜다진짜가나타남
|
11년 전 | 1219 | |
| 6828 | 11년 전 | 832 | ||
| 6827 |
봉보로봉봉
|
11년 전 | 919 | |
| 6826 |
jinion
|
11년 전 | 832 | |
| 6825 | 11년 전 | 809 | ||
| 6824 |
yunkiri486
|
11년 전 | 730 | |
| 6823 |
2donggalbi
|
11년 전 | 860 | |
| 6822 | 11년 전 | 861 | ||
| 6821 | 11년 전 | 810 | ||
| 6820 | 11년 전 | 3115 | ||
| 6819 | 11년 전 | 1261 | ||
| 6818 | 11년 전 | 521 | ||
| 6817 |
|
11년 전 | 619 | |
| 6816 | 11년 전 | 2088 | ||
| 6815 | 11년 전 | 1223 | ||
| 6814 | 11년 전 | 874 | ||
| 6813 | 11년 전 | 624 | ||
| 6812 |
|
11년 전 | 992 | |
| 6811 | 11년 전 | 594 | ||
| 6810 | 11년 전 | 1548 | ||
| 6809 |
낚시가좋아
|
11년 전 | 1053 | |
| 6808 | 11년 전 | 450 | ||
| 6807 | 11년 전 | 781 | ||
| 6806 |
Unhappy
|
11년 전 | 1788 | |
| 6805 | 11년 전 | 1622 | ||
| 6804 | 11년 전 | 1137 | ||
| 6803 | 11년 전 | 579 | ||
| 6802 |
asdfg
|
11년 전 | 1149 | |
| 6801 |
아트귀농인
|
11년 전 | 512 | |
| 6800 | 11년 전 | 2568 | ||
| 6799 | 11년 전 | 1363 | ||
| 6798 | 11년 전 | 1477 | ||
| 6797 | 11년 전 | 636 | ||
| 6796 |
purple63
|
11년 전 | 436 | |
| 6795 | 11년 전 | 2641 | ||
| 6794 |
커네드커네드
|
11년 전 | 966 | |
| 6793 | 11년 전 | 416 | ||
| 6792 | 11년 전 | 2509 | ||
| 6791 | 11년 전 | 534 | ||
| 6790 | 11년 전 | 2267 | ||
| 6789 |
리아빌리티
|
11년 전 | 3108 | |
| 6788 | 11년 전 | 1348 | ||
| 6787 | 11년 전 | 684 | ||
| 6786 | 11년 전 | 395 | ||
| 6785 | 11년 전 | 725 | ||
| 6784 |
|
11년 전 | 855 | |
| 6783 | 11년 전 | 594 | ||
| 6782 | 11년 전 | 3663 | ||
| 6781 |
리아빌리티
|
11년 전 | 502 | |
| 6780 | 11년 전 | 543 | ||
| 6779 | 11년 전 | 496 | ||
| 6778 | 11년 전 | 4704 | ||
| 6777 |
바보온달123
|
11년 전 | 625 | |
| 6776 | 11년 전 | 936 | ||
| 6775 | 11년 전 | 739 | ||
| 6774 |
DANet
|
11년 전 | 647 | |
| 6773 | 11년 전 | 1562 | ||
| 6772 | 11년 전 | 1368 | ||
| 6771 | 11년 전 | 625 | ||
| 6770 | 11년 전 | 1165 | ||
| 6769 | 11년 전 | 963 | ||
| 6768 | 11년 전 | 697 | ||
| 6767 | 11년 전 | 592 | ||
| 6766 | 11년 전 | 1273 | ||
| 6765 |
크림나이트
|
11년 전 | 1007 | |
| 6764 | 11년 전 | 1558 | ||
| 6763 | 11년 전 | 2616 | ||
| 6762 | 11년 전 | 546 | ||
| 6761 |
|
11년 전 | 795 | |
| 6760 |
|
11년 전 | 721 | |
| 6759 | 11년 전 | 3354 | ||
| 6758 | 11년 전 | 1014 | ||
| 6757 | 11년 전 | 1276 | ||
| 6756 | 11년 전 | 900 | ||
| 6755 |
|
11년 전 | 577 | |
| 6754 |
|
11년 전 | 726 | |
| 6753 |
|
11년 전 | 1396 | |
| 6752 | 11년 전 | 614 | ||
| 6751 |
|
11년 전 | 658 | |
| 6750 |
|
11년 전 | 2032 | |
| 6749 | 11년 전 | 1224 | ||
| 6748 |
|
11년 전 | 1127 | |
| 6747 | 11년 전 | 1178 | ||
| 6746 | 11년 전 | 843 | ||
| 6745 |
|
11년 전 | 917 | |
| 6744 | 11년 전 | 857 | ||
| 6743 | 11년 전 | 1298 | ||
| 6742 | 11년 전 | 543 | ||
| 6741 |
Abilityarch
|
11년 전 | 614 | |
| 6740 | 11년 전 | 663 | ||
| 6739 |
leewin20
|
11년 전 | 1243 | |
| 6738 | 11년 전 | 515 | ||
| 6737 | 11년 전 | 1221 | ||
| 6736 | 11년 전 | 1263 | ||
| 6735 | 11년 전 | 558 | ||
| 6734 | 11년 전 | 1292 | ||
| 6733 |
RipperTNT
|
11년 전 | 1847 | |
| 6732 |
|
11년 전 | 1342 | |
| 6731 |
|
11년 전 | 1401 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기