웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
div, Javascript 이용해서 섹션 테이블 만들기
2002.12.18 12:35
Photoshop이나 플래쉬 사용해서 더 멋진 섹션 테이블 만들수 있지만
div 태그와 javascript만 이용하기 땜에 div 이해하는데 도움 될겁니다. 다른데 응용해서 쓸수도 있구요.
자 그럼...
<!-- 먼저 밑에 부분 head 부분에 삽입하세요. 테이블 스타일 입니다. 나중에 입맛에 맞게 고치세요 //-->
<style>
h2{color:#ff9900}
a.ch, a.ch:visted{text-decoration:none; color:#ffcc00}
table{width:100%;padding:4px}
.i{background:#ffcc00;border-right: 3px outset #ffffff;border-left: 3px outset #ffffff;border-bottom: 3px outset #ffffff}
.on{background:#ffcc00;text-align:center;color:#333333;border-right: 3px outset #ffffff;border-left: 3px outset #ffffff;border-top: 3px outset #ffffff}
.off{background:#333333;text-align:center;border-bottom: 3px inset #ffffff}
.o{position:absolute;width:98%;visibility:hidden}
.nota{background:#ffffff}
</style>
<!-- 밑에 부분은 섹션테이블은 콘트롤 하는 자바스크립입니다. 역쉬 head 부분에 삽입하세요 //-->
<script language="javascript">
var N=""
function cO(z) {
if(document.all) { document.all(z).style.visibility="hidden" }
else if(document.getElementById) { document.getElementById(z).style.visibility="hidden" }
else if(document.layers) { document.layers[z].visibility="hide" }
}
function vO(z) {
if (N!=z&&N!="") { cO(N) }
if(document.all) { document.all(z).style.visibility="visible" }
else if(document.getElementById) { document.getElementById(z).style.visibility="visible" }
else if(document.layers) { document.layers[z].visibility="show" }
N=z
}
</script>
<!-- 그 다음 body 태그 시작부분에 밑에처럼 삽입해주세요. 페이지 시작될때 default 섹션지정해 주는것입니다. //-->
<body onload="vO('2');vO('0')">
<!-- 이젠 밑에 부분을 body 태그 사이에 넣어주세요. 섹션 테이블입니다 //-->
<div style="position: absolute; top: 100; left: 170" id="0" class=o>
<table height="20" cellspacing=0>
<tr>
<td class=on>섹션 1</td>
<td class=off><a class=ch href="javascript:vO('1')" style="text-decoration:none; color:#FFCC00">섹션 2</a></td>
<td class=off><a class=ch href="javascript:vO('2')" style="text-decoration:none; color:#FFCC00">섹션 3</a></td>
</tr>
<tr>
<td colspan=3 class=i>
<!-- 섹션 1 설명 부분입니다 //-->
<br>
<p style="margin-left:20; margin-right:20"> 여기가 섹션 1 설명 들어가는 곳입니다.<br><br>
</p>
</td>
</tr>
</table>
</div>
<div style="position: absolute; top: 100; left: 170" id="1" class=o>
<table height="20" cellspacing=0>
<tr>
<td class=off><a class=ch href="javascript:vO('0')" style="text-decoration:none; color:#FFCC00">섹션 1</a></td>
<td class=on>섹션 2</td>
<td class=off><a class=ch href="javascript:vO('2')" style="text-decoration:none; color:#FFCC00">섹션 3</a></td>
</tr>
<tr>
<td colspan=3 class=i>
<!-- 섹션 2 설명 부분입니다 //-->
<br>
<p style="margin-left:20; margin-right:20"> 여기가 섹션 2 설명 들어가는 곳입니다. <br><br>
</p>
</td>
</tr>
</table>
</div>
<div style="position: absolute; top: 100; left: 170" id="2" class=o>
<table height="20" cellspacing=0>
<tr>
<td class=off><a class=ch href="javascript:vO('0')" style="text-decoration:none; color:#FFCC00">섹션 1</a></td>
<td class=off><a class=ch href="javascript:vO('1')" style="text-decoration:none; color:#FFCC00">섹션 2</a></td>
<td class=on>섹션 3</td>
</tr>
<tr>
<td colspan=3 class=i>
<!-- 섹션 3 설명 부분입니다 //-->
<br>
<p style="margin-left:20; margin-right:20"> 여기가 섹션 3 설명 들어가는 곳입니다. <br><br>
</p>
</td>
</tr>
</table>
</div>
예제보기 : http://zoony23.cafe24.com/main.html
div 태그와 javascript만 이용하기 땜에 div 이해하는데 도움 될겁니다. 다른데 응용해서 쓸수도 있구요.
자 그럼...
<!-- 먼저 밑에 부분 head 부분에 삽입하세요. 테이블 스타일 입니다. 나중에 입맛에 맞게 고치세요 //-->
<style>
h2{color:#ff9900}
a.ch, a.ch:visted{text-decoration:none; color:#ffcc00}
table{width:100%;padding:4px}
.i{background:#ffcc00;border-right: 3px outset #ffffff;border-left: 3px outset #ffffff;border-bottom: 3px outset #ffffff}
.on{background:#ffcc00;text-align:center;color:#333333;border-right: 3px outset #ffffff;border-left: 3px outset #ffffff;border-top: 3px outset #ffffff}
.off{background:#333333;text-align:center;border-bottom: 3px inset #ffffff}
.o{position:absolute;width:98%;visibility:hidden}
.nota{background:#ffffff}
</style>
<!-- 밑에 부분은 섹션테이블은 콘트롤 하는 자바스크립입니다. 역쉬 head 부분에 삽입하세요 //-->
<script language="javascript">
var N=""
function cO(z) {
if(document.all) { document.all(z).style.visibility="hidden" }
else if(document.getElementById) { document.getElementById(z).style.visibility="hidden" }
else if(document.layers) { document.layers[z].visibility="hide" }
}
function vO(z) {
if (N!=z&&N!="") { cO(N) }
if(document.all) { document.all(z).style.visibility="visible" }
else if(document.getElementById) { document.getElementById(z).style.visibility="visible" }
else if(document.layers) { document.layers[z].visibility="show" }
N=z
}
</script>
<!-- 그 다음 body 태그 시작부분에 밑에처럼 삽입해주세요. 페이지 시작될때 default 섹션지정해 주는것입니다. //-->
<body onload="vO('2');vO('0')">
<!-- 이젠 밑에 부분을 body 태그 사이에 넣어주세요. 섹션 테이블입니다 //-->
<div style="position: absolute; top: 100; left: 170" id="0" class=o>
<table height="20" cellspacing=0>
<tr>
<td class=on>섹션 1</td>
<td class=off><a class=ch href="javascript:vO('1')" style="text-decoration:none; color:#FFCC00">섹션 2</a></td>
<td class=off><a class=ch href="javascript:vO('2')" style="text-decoration:none; color:#FFCC00">섹션 3</a></td>
</tr>
<tr>
<td colspan=3 class=i>
<!-- 섹션 1 설명 부분입니다 //-->
<br>
<p style="margin-left:20; margin-right:20"> 여기가 섹션 1 설명 들어가는 곳입니다.<br><br>
</p>
</td>
</tr>
</table>
</div>
<div style="position: absolute; top: 100; left: 170" id="1" class=o>
<table height="20" cellspacing=0>
<tr>
<td class=off><a class=ch href="javascript:vO('0')" style="text-decoration:none; color:#FFCC00">섹션 1</a></td>
<td class=on>섹션 2</td>
<td class=off><a class=ch href="javascript:vO('2')" style="text-decoration:none; color:#FFCC00">섹션 3</a></td>
</tr>
<tr>
<td colspan=3 class=i>
<!-- 섹션 2 설명 부분입니다 //-->
<br>
<p style="margin-left:20; margin-right:20"> 여기가 섹션 2 설명 들어가는 곳입니다. <br><br>
</p>
</td>
</tr>
</table>
</div>
<div style="position: absolute; top: 100; left: 170" id="2" class=o>
<table height="20" cellspacing=0>
<tr>
<td class=off><a class=ch href="javascript:vO('0')" style="text-decoration:none; color:#FFCC00">섹션 1</a></td>
<td class=off><a class=ch href="javascript:vO('1')" style="text-decoration:none; color:#FFCC00">섹션 2</a></td>
<td class=on>섹션 3</td>
</tr>
<tr>
<td colspan=3 class=i>
<!-- 섹션 3 설명 부분입니다 //-->
<br>
<p style="margin-left:20; margin-right:20"> 여기가 섹션 3 설명 들어가는 곳입니다. <br><br>
</p>
</td>
</tr>
</table>
</div>
예제보기 : http://zoony23.cafe24.com/main.html
댓글 3
-
아반테
2002.12.22 01:00
만드신다고 수고하셨습니다.ㅋㅋ -
dolufy
2002.12.19 03:03
신기하여라 *..* -
。I징:)
2003.01.18 00:12
대단하시다..ㅠㅠ 짱짱짱.;;
제목 | 글쓴이 | 날짜 |
---|---|---|
홈페이지 패스워드(암호) 걸기 소스 [6] | keymove | 2003.01.09 |
select form 으로 새 창 띄우기 [4] | 당근당근 | 2003.01.07 |
[re] select form 으로 새 창 띄우기(간단버전) [3] | RedEye | 2003.01.27 |
갤러리스킨에 쓰면 좋을 것 같은 미리보기(수정2) [10] | 행복한고니 | 2003.01.06 |
크롬리스에 응용할만한 소스;; [3] | MYMob.INT. | 2003.01.05 |
숫자를 한글로 변환하는 함수 [1] | 행복한고니 | 2003.01.03 |
mid 랜덤으로 듣기 ... [2] | 아벨라 | 2003.01.02 |
색다른 링크법(새창) [2] | BIRDY™ | 2002.12.30 |
텍스트 폼 / 전체선택 하기 자바스크립 | mnemosyne | 2002.12.24 |
div, Javascript 이용해서 섹션 테이블 만들기 [3] | mnemosyne | 2002.12.18 |
크롬리스 완벽해결! IE.2.0부터 Netscape까지 작동가능!! [13] | 김민호 | 2002.12.16 |
오른쪽 클릭 메뉴 [6] | 디아릭스 | 2002.12.16 |
select form 으로 새창띄우기(수정:2002-12-19) [3] | dolufy | 2002.12.11 |
홈페이지에 머무른 시간을 알림창으로 나타내기. [3] | 시즌오브드림 | 2002.12.10 |
출렁이며 내려오는 공지창.. [3] | 아벨라 | 2002.12.10 |
아래 새창에 맞게 이미지 띄우기 더더 업그레이드 판! [6] | ATply | 2002.12.09 |
이동 메뉴 (Netscape 가능 NZEO.com 소스) [9] | 박영창 | 2002.12.08 |
아래 이미지크기에 맞게 새창띄우는 소스(기능개선판) (-_-) v [10] | 행복한고니 | 2002.12.07 |
[re] 오류 아닌 오류 나시는 분덜... | 임병찬 | 2003.04.22 |
이미지 크기에 맞게 새창띄우는 자바소스인데요~ [3] | 새벽이슬 | 2002.12.07 |