그누보드5
솔루션
그누보드5
영카트5
그누보드6 파이썬
Q & A
컨텐츠몰
서비스
의뢰/견적
개발허브
모두의 개발
코딩 테스트
디버깅 챌린지
개발자 목록
개발자 등급 시스템
커뮤니티
로그인
회원가입
그누보드5
솔루션
Q & A
컨텐츠몰
서비스
의뢰/견적
개발허브
커뮤니티
About
로그인
회원가입
그누보드5
라이센스
특징/기능
다운로드
매뉴얼
사용자데모
관리자데모
자주하시는 질문
질문답변
팁자료실
강좌
스킨
빌더
테마
플러그인
사용후기
디자인시안
변환프로그램
가이드
영카트5
그누보드6 파이썬
솔루션
그누보드5
영카트5
그누보드6 파이썬
Q & A
질문하는방법
모든질문
답변없는질문
미채택된질문
채택된질문
그누보드5
영카트5
태그전체보기
컨텐츠몰
장바구니
서비스
전자결제 (PG)
KG이니시스
NHN KCP
HOT
나이스페이
토스페이먼츠
본인인증
KCP 본인인증
이니시스 통합인증
알림/메시징
아이코드 SMS
팝빌 알림톡
NEW
리셀러
리셀러 가입 안내
리셀러 가입 신청
리셀러 가입 내역
서비스 문의
자주하는 질문
서비스 공지사항
의뢰/견적
제작의뢰
AI 견적
채용공고
인재 검색
개발허브
모두의 개발
코딩 테스트
디버깅 챌린지
개발자 목록
개발자 등급 시스템
커뮤니티
자유게시판
유머게시판
AI 게시판
인기글
소모임
버그신고
About
회사소개
사이트 가이드
사이트맵
공지사항
문의게시판
이용약관
개인정보처리방침
게시물 규제정책
신고/차단 정책
포인트 정책
2026년 리뉴얼
랜덤으로 불러오는 소...
이전
목록
최신글스킨 이미지 출...
다음
엄
엄
게시판 리스트 화면에서 마우스오버시 백그라운드 색 변하는 효과?
엄크
프로필 보기
이 회원 글보기
이 회원의 댓글보기
·
12년 전
·
조회 4443
4443
·
댓글 8
8
예시 :
http://www.ggaeal.com/bbs/board.php?bo_table=humor
저번에도 질문했는데 감이 안 잡혀서 또 질문합니다 .. ㅎㅎㅋ
스크랩
0
|
신고
0
신고하기
대상:
-
사유 선택
*
스팸/광고
부적절한 콘텐츠
욕설/비방
기타
이 회원 차단만
(신고 없이)
이 회원도 차단
취소
신고하기
댓글 8개
강
강한남v
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
테이블 <TR>태크에 onmouseover하고 onmouseout 이벤트에 스타일 적용해주시면 될것 같습니다.
예시
<tr onMouseOver='this.style.backgroundColor="#b8dcee"' onMouseOut='this.style.backgroundColor=""' style="cursor:hand">
색상은 원하시는 색상으로...^^
엄
엄크
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
css로 하는법은 없나요?
강
강한남v
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
<style type=”text/css”>
td.off { background: #cccccc;}
td.on { background: #b8dcee;}
</style>
<tr class=”off” onmouseover=”this.className=’on‘” onmouseout=”this.className=’off‘”>
엄
엄크
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
list.skin에 그대로 붙혀넣기하면 되나요? ㅎㅎ
강
강한남v
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
스타일에 오타가 있네요.ㅠ
td를 tr로 ..ㅋㅋㅋ
list.skin에 넣으신다고요??
제가 현재 사용하시는 스킨에 어떤 스타일이 적용된지 몰라서...
엄
엄크
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
<tr class=”off” onmouseover=”this.className=’on‘” onmouseout=”this.className=’off‘”>
이건 style에 넣어도 적용 안되는거로 알고 있는데 아닌가여 ?ㅋ
강
강한남v
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
[code]
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN" “
http://www.w3.org/TR/html4/loose.dtd
">
<html>
<head>
<title>Table Background Change</title>
<style type="text/css">
tr.off {background:#ffffff}
tr.on {background:#999999}
</style>
</head>
<body>
<table width="700" cellpadding="3">
<tr>
<td>No.</td>
<td>제목</td>
<td>글쓴이</td>
<td>작성일</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
</table>
</body>
</html>
[/code]
엄
엄크
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
<!-- 게시판 목록 시작 -->
<tr onMouseOver='this.style.backgroundColor="#b8dcee"' onMouseOut='this.style.backgroundColor="#d4d4d4"' style="cursor:hand">
<table width="<?=$width?>" align="center" cellpadding="0" cellspacing="0"><tr><td>
<!-- 분류 셀렉트 박스, 게시물 몇건, 관리자화면 링크 -->
<div class="board_top">
<div style="float:left;">
<form name="fcategory" method="get" style="margin:0px;">
<? if ($is_category) { ?>
<select name=sca onchange="location='<?=$category_location?>'+<?=strtolower($g4[charset])=='utf-8' ? "encodeURIComponent(this.value)" : "this.value"?>;">
<option value=''>전체</option>
<?=$category_option?>
</select>
<? } ?>
</form>
</div>
<div style="float:right; margin-bottom:10px;">
<img src="<?=$board_skin_path?>/img/icon_total.gif" align="absmiddle" border='0'>
<span style="color:#888888; font-weight:bold;">전체 <?=number_format($total_count)?></span>
<? if ($rss_href) { ?><a href='<?=$rss_href?>'><img src='<?=$board_skin_path?>/img/btn_rss.gif' border='0' align="absmiddle"></a><?}?>
<? if ($admin_href) { ?><a href="<?=$admin_href?>"><img src="<?=$board_skin_path?>/img/btn_admin.gif" border='0' title="관리자" align="absmiddle"></a><?}?>
</div>
</div>
<!-- 제목 -->
<form name="fboardlist" method="post">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='spt' value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw' value=''>
<table cellspacing="0" cellpadding="0" class="board_list">
<col width="50" />
<? if ($is_checkbox) { ?><col width="40" /><? } ?>
<col />
<col width="110" />
<col width="40" />
<col width="50" />
<? if ($is_good) { ?><col width="40" /><? } ?>
<? if ($is_nogood) { ?><col width="40" /><? } ?>
<tr>
<th>번호</th>
<? if ($is_checkbox) { ?><th><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type="checkbox"></th><?}?>
<th>제 목</th>
<th>글쓴이</th>
<th><?=subject_sort_link('wr_datetime', $qstr2, 1)?>날짜</a></th>
<th><?=subject_sort_link('wr_hit', $qstr2, 1)?>조회</a></th>
<? if ($is_good) { ?><th><?=subject_sort_link('wr_good', $qstr2, 1)?>추천</a></th><?}?>
<? if ($is_nogood) { ?><th><?=subject_sort_link('wr_nogood', $qstr2, 1)?>비추천</a></th><?}?>
</tr></tr>
----------
th -> td?
list.skin파일 맞죠?
댓글을 작성하시려면
로그인
이 필요합니다.
그누4 질문답변
그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기 기존 게시물은 열람만 가능합니다.
제목+내용
제목
내용
검색
+
+ 글쓰기
제목
글쓴이
날짜
조회
[ajax] $.get 으로 php를 로드하면 그누보드함수가 없는 함수가 되네요;
[1]
클
클베
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,635
해당 카테고리를 메인에 출력할수 있을까요?ㅜㅜ 답변좀 부탁드릴게요!!
[1]
홍
홍냥
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,945
메인화면 최신글 적용 질문
[2]
유
유미스
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
2,717
가로 카테고리 G4S 처럼 깔끔하게<<
[3]
백
백두산호랑이...
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,631
헤드를 씌우면 이런 에러가 나요..
[2]
소
소수리꼬
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,552
썸네일이 이상합니다
[3]
맑
맑은물
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,565
메인화면 최신글 추출 질문
[3]
유
유미스
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,555
고수님들 소스 보고 해결좀 부탁드립니다..
[2]
익
익명닉네임
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
987
랜덤으로 불러오는 소스
[1]
2
2쁘니
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
975
게시판 리스트 화면에서 마우스오버시 백그라운드 색 변하는 효과?
[8]
엄
엄크
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
4,444
최신글스킨 이미지 출력 문제입니다...
[2]
쎄
쎄엠
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,644
글작성시 관리자에게 메일 발송이 되게
[1]
졍
졍이만쉐
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,193
모바일 스킨을 다운받아 글쓰기를 하려는데 글쓰기를 눌러도 아무런 변화가 없네요
시
시티헌터12
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,074
제목 색상 적용했는데 문의드립니다.
[3]
G
Guys
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,041
스크롤되는 퀵배너가 게시판 뷰페이지,글쓰기 페이지에서 작동하지 않아요.
[2]
볼
볼링이
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,564
view.skin.php 특정문구 공지사항일경우 출력안되게 하려면??
[3]
듀
듀란듀란
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,669
접속자 아이피중에 특정아이피를 찾아내는 방법이 있을까요?
[1]
자
자두카
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,087
워드프레스에서 스킨이나 테마 템플릿 만들어서 유료판매하고 싶은데요 할줄아시는 고수님들~~
트
트랜스포머4
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
821
배열로 만든 셀렉트박스 셀렉드 유지 방법좀 알려주세요
[4]
겸
겸손1935
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,848
뷰페이지용 갤러리 질문
[3]
디
디자인럽
프로필 보기
이 회원 글보기
이 회원의 댓글보기
12년 전
조회
1,320
이전
첫 페이지
다음
글쓰기
1
/
1
맨 위로
댓글 8개
예시
<tr onMouseOver='this.style.backgroundColor="#b8dcee"' onMouseOut='this.style.backgroundColor=""' style="cursor:hand">
색상은 원하시는 색상으로...^^
td.off { background: #cccccc;}
td.on { background: #b8dcee;}
</style>
<tr class=”off” onmouseover=”this.className=’on‘” onmouseout=”this.className=’off‘”>
td를 tr로 ..ㅋㅋㅋ
list.skin에 넣으신다고요??
제가 현재 사용하시는 스킨에 어떤 스타일이 적용된지 몰라서...
이건 style에 넣어도 적용 안되는거로 알고 있는데 아닌가여 ?ㅋ
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN" “http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Table Background Change</title>
<style type="text/css">
tr.off {background:#ffffff}
tr.on {background:#999999}
</style>
</head>
<body>
<table width="700" cellpadding="3">
<tr>
<td>No.</td>
<td>제목</td>
<td>글쓴이</td>
<td>작성일</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'">
<td>No.</td>
<td>게시판입니다.</td>
<td>홍길동</td>
<td>2013-09-17</td>
</tr>
</table>
</body>
</html>
[/code]
<tr onMouseOver='this.style.backgroundColor="#b8dcee"' onMouseOut='this.style.backgroundColor="#d4d4d4"' style="cursor:hand">
<table width="<?=$width?>" align="center" cellpadding="0" cellspacing="0"><tr><td>
<!-- 분류 셀렉트 박스, 게시물 몇건, 관리자화면 링크 -->
<div class="board_top">
<div style="float:left;">
<form name="fcategory" method="get" style="margin:0px;">
<? if ($is_category) { ?>
<select name=sca onchange="location='<?=$category_location?>'+<?=strtolower($g4[charset])=='utf-8' ? "encodeURIComponent(this.value)" : "this.value"?>;">
<option value=''>전체</option>
<?=$category_option?>
</select>
<? } ?>
</form>
</div>
<div style="float:right; margin-bottom:10px;">
<img src="<?=$board_skin_path?>/img/icon_total.gif" align="absmiddle" border='0'>
<span style="color:#888888; font-weight:bold;">전체 <?=number_format($total_count)?></span>
<? if ($rss_href) { ?><a href='<?=$rss_href?>'><img src='<?=$board_skin_path?>/img/btn_rss.gif' border='0' align="absmiddle"></a><?}?>
<? if ($admin_href) { ?><a href="<?=$admin_href?>"><img src="<?=$board_skin_path?>/img/btn_admin.gif" border='0' title="관리자" align="absmiddle"></a><?}?>
</div>
</div>
<!-- 제목 -->
<form name="fboardlist" method="post">
<input type='hidden' name='bo_table' value='<?=$bo_table?>'>
<input type='hidden' name='sfl' value='<?=$sfl?>'>
<input type='hidden' name='stx' value='<?=$stx?>'>
<input type='hidden' name='spt' value='<?=$spt?>'>
<input type='hidden' name='page' value='<?=$page?>'>
<input type='hidden' name='sw' value=''>
<table cellspacing="0" cellpadding="0" class="board_list">
<col width="50" />
<? if ($is_checkbox) { ?><col width="40" /><? } ?>
<col />
<col width="110" />
<col width="40" />
<col width="50" />
<? if ($is_good) { ?><col width="40" /><? } ?>
<? if ($is_nogood) { ?><col width="40" /><? } ?>
<tr>
<th>번호</th>
<? if ($is_checkbox) { ?><th><input onclick="if (this.checked) all_checked(true); else all_checked(false);" type="checkbox"></th><?}?>
<th>제 목</th>
<th>글쓴이</th>
<th><?=subject_sort_link('wr_datetime', $qstr2, 1)?>날짜</a></th>
<th><?=subject_sort_link('wr_hit', $qstr2, 1)?>조회</a></th>
<? if ($is_good) { ?><th><?=subject_sort_link('wr_good', $qstr2, 1)?>추천</a></th><?}?>
<? if ($is_nogood) { ?><th><?=subject_sort_link('wr_nogood', $qstr2, 1)?>비추천</a></th><?}?>
</tr></tr>
----------
th -> td?
list.skin파일 맞죠?