c

마우스 오버시 나오게 할려면 어떻게하나요?

· 2012-05-12 (토) 23:52:09 · 3504 · 3
그누보드 질문에도 올렸는데.. 이건 제이쿼리 문제인것것같아 여기로 다시올립니다.
 
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>
|

댓글 3개

jQuery 스크립트가 나타난 부분이 확인이 안되서 자세한 설명은 어렵습니다만,
click 매서드 대신에 mouseover 매서드를 사용하시면 됩니다.
이를 테면,
$("#div").click(function() {
/* 클릭시 실행될 스크립트 */
});
->
$("#div").mouseover(function() {
/* 마우스오버시 실행될 스크립트 */
});
답변주셔서.. 감사..
어딜 고쳐야 되는지 몰라서 ㅋ
다른 플러그인 http://malsup.com/jquery/cycle/... 이쪽사이트에 비슷한게 있어서 그걸로 들에서 확인해서 교체했습니다.
2012-06-02 (토) 05:03:57
css만 제대로 숙지하셔도 같은 효과를 볼 것 같은데요
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
13-07-14 조회 5,382
13-07-14 조회 5,349
13-07-14 조회 4,625
13-07-14 조회 4,226
13-07-14 조회 4,071
13-07-14 조회 4,146
13-07-14 조회 4,869
13-07-14 조회 4,513
13-07-14 조회 4,291
13-07-14 조회 5,338
13-07-14 조회 5,217
13-07-14 조회 5,013
13-07-14 조회 4,715
13-07-14 조회 5,366
13-07-13 조회 3,560
13-07-01 조회 5,589
13-07-01 조회 5,753
13-07-01 조회 3,842
13-07-01 조회 5,190
13-05-27 조회 3,943
13-05-21 조회 4,840
13-05-02 조회 1만
13-04-29 조회 5,172
13-04-15 조회 5,439
13-04-13 조회 6,304
13-02-27 조회 3,817
13-02-26 조회 6,425
13-02-12 조회 4,996
13-02-01 조회 2.3만
13-01-23 조회 3,336
13-01-09 조회 7,977
13-01-07 조회 4,916
13-01-07 조회 3,615
13-01-04 조회 1.3만
13-01-03 조회 1.2만
12-12-31 조회 6,114
12-12-27 조회 4,420
12-12-27 조회 4,060
12-12-27 조회 8,689
12-12-18 조회 3,590
12-12-12 조회 3,657
12-12-12 조회 6,632
12-12-12 조회 8,110
12-12-05 조회 5,232
12-12-01 조회 6,634
12-11-22 조회 4,582
12-11-09 조회 5,394
12-11-09 조회 7,470
12-10-29 조회 4,736
12-10-16 조회 6,279
12-10-09 조회 5,244
12-09-02 조회 4,426
12-09-01 조회 3,521
12-08-30 조회 4,196
12-08-30 조회 4,177
12-08-28 조회 3,511
12-08-21 조회 7,131
12-08-20 조회 3,659
12-08-18 조회 5,050
12-08-18 조회 3,411
12-08-11 조회 3,566
12-08-09 조회 3,668
12-08-07 조회 3,601
12-08-07 조회 4,191
12-08-01 조회 4,537
12-08-01 조회 4,323
12-07-20 조회 9,816
12-07-17 조회 4,087
12-07-15 조회 3,885
12-07-10 조회 4,193
12-07-09 조회 6,906
12-07-05 조회 3,243
12-07-04 조회 3,409
12-06-30 조회 5,670
12-06-28 조회 3,740
12-06-20 조회 3,874
12-06-16 조회 3,131
12-06-14 조회 3,837
12-06-07 조회 3,827
12-06-06 조회 6,097
12-05-27 조회 4,375
12-05-25 조회 3,176
12-05-25 조회 2,950
12-05-24 조회 3,051
12-05-24 조회 4,504
12-05-23 조회 3,870
12-05-22 조회 6,480
12-05-15 조회 3,821
12-05-15 조회 3,611
12-05-14 조회 3,033
12-05-12 조회 3,505
12-05-11 조회 6,941
12-05-07 조회 4,407
12-04-28 조회 3,609
12-04-25 조회 5,222
12-04-15 조회 3,830
12-04-12 조회 4,667
12-04-11 조회 3,415
12-04-08 조회 3,200
12-03-21 조회 6,348