부드럽게 스크롤 되는 트리구조형 메뉴 스크립트
주메뉴를 클릭하면 하위메뉴가 열리고, 다른 메뉴를 클릭하면 이전 부메뉴들은 닫히게 됩니다
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="expires" content="-1">
<meta http-equiv="pragma" content="no-cache">
<title> jasko sample script </title>
<!---- [1단계] 아래 코드를 <HEAD> 와 <HEAD> 태그 사이에 붙여 넣으세요 --->
<style>
/* 메뉴판의 전체 테두리 설정 */
#main_panel
{
border:1px solid darkblue;
position:relative;
overflow:hidden;
}
/* 주메뉴의 스타일 설정 */
.head_item
{
background-color:gold;
font-size:12px;
font-family:굴림;
font:bold;
border-top:1px solid darkblue;
border-bottom:1px solid darkblue;
position:absolute;
left:0px;
text-align:left;
}
/* 부메뉴의 스타일 설정 */
.item
{
background-color:lightyellow;
font-family:굴림;
font-size:12px;
left:0px;
position:relative;
text-align:left;
}
.item_panel
{
position:absolute;
background-color:lightyellow;
left:0px;
}
.item_panel a
{
text-decoration:none;
color:black;
}
</style>
<script language="JavaScript" src="menu_09.js"></script>
<!------------------------- 여기까지 ------------------------------------>
</head>
<body>
<!---- [2단계] 아래의 방법으로 원하는 위치에 붙여 넣으세요 --->
<script language="JavaScript">
var Link = new Array();
// Link[번호] = "구분|제목:URL|타겟";
// 구분 : 0 = 주메뉴, 1 = 부메뉴
Link[0] = "0|자바스크립트";
Link[1] = "1|홈페이지|http://www.sir.co.kr|_blank";
Link[2] = "1|자바스크립트|www.sir.co.kr|_blank";
Link[3] = "1|자바 애플릿|http://www.sir.co.kr|_blank";
Link[4] = "1|CGI 스크립트|http://www.sir.co.kr|_blank";
Link[5] = "0|게시판들";
Link[6] = "1|묻고 답하고|http://www.sir.co.kr|_blank";
Link[7] = "1|자유 게시판|http://www.sir.co.kr|_blank"
Link[8] = "0|링크 사이트";
Link[9] = "1|다음 커뮤니케이션즈|http://www.sir.co.kr|_blank";
Link[10] = "1|야후 코리아|http://www.sir.co.kr|_blank";
Link[11] = "0|미디어 페이지";
Link[12] = "1|엠비씨 홈페이지|http://www.sir.co.kr|_blank";
Link[13] = "0|신문사 페이지";
Link[14] = "1|조선일보|http://www.sir.co.kr|_blank";
start(1);
</script>
</body>
</html>
<!--- [3단계] menu_09.js 파일을 같은 경로에 업로드 하세요 ---><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="expires" content="-1">
<meta http-equiv="pragma" content="no-cache">
<title> jasko sample script </title>
<!---- [1단계] 아래 코드를 <HEAD> 와 <HEAD> 태그 사이에 붙여 넣으세요 --->
<style>
/* 메뉴판의 전체 테두리 설정 */
#main_panel
{
border:1px solid darkblue;
position:relative;
overflow:hidden;
}
/* 주메뉴의 스타일 설정 */
.head_item
{
background-color:gold;
font-size:12px;
font-family:굴림;
font:bold;
border-top:1px solid darkblue;
border-bottom:1px solid darkblue;
position:absolute;
left:0px;
text-align:left;
}
/* 부메뉴의 스타일 설정 */
.item
{
background-color:lightyellow;
font-family:굴림;
font-size:12px;
left:0px;
position:relative;
text-align:left;
}
.item_panel
{
position:absolute;
background-color:lightyellow;
left:0px;
}
.item_panel a
{
text-decoration:none;
color:black;
}
</style>
<script language="JavaScript" src="menu_09.js"></script>
<!------------------------- 여기까지 ------------------------------------>
</head>
<body>
<!---- [2단계] 아래의 방법으로 원하는 위치에 붙여 넣으세요 --->
<script language="JavaScript">
var Link = new Array();
// Link[번호] = "구분|제목:URL|타겟";
// 구분 : 0 = 주메뉴, 1 = 부메뉴
Link[0] = "0|자바스크립트";
Link[1] = "1|홈페이지|http://www.sir.co.kr|_blank";
Link[2] = "1|자바스크립트|www.sir.co.kr|_blank";
Link[3] = "1|자바 애플릿|http://www.sir.co.kr|_blank";
Link[4] = "1|CGI 스크립트|http://www.sir.co.kr|_blank";
Link[5] = "0|게시판들";
Link[6] = "1|묻고 답하고|http://www.sir.co.kr|_blank";
Link[7] = "1|자유 게시판|http://www.sir.co.kr|_blank"
Link[8] = "0|링크 사이트";
Link[9] = "1|다음 커뮤니케이션즈|http://www.sir.co.kr|_blank";
Link[10] = "1|야후 코리아|http://www.sir.co.kr|_blank";
Link[11] = "0|미디어 페이지";
Link[12] = "1|엠비씨 홈페이지|http://www.sir.co.kr|_blank";
Link[13] = "0|신문사 페이지";
Link[14] = "1|조선일보|http://www.sir.co.kr|_blank";
start(1);
</script>
</body>
</html>
<!--- [3단계] menu_09.js 파일을 같은 경로에 업로드 하세요 ---><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
댓글 2개
19년 전
킁킁,,자바스크립트 파일은 어디에..?
Elbis
19년 전
파일 올렸습니다..
죄송합니다..ㅎㅎ
죄송합니다..ㅎㅎ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7530 | 10년 전 | 761 | ||
| 7529 |
파랑새1597
|
10년 전 | 1193 | |
| 7528 |
파랑새1597
|
10년 전 | 1290 | |
| 7527 |
integrity7
|
10년 전 | 1374 | |
| 7526 | 10년 전 | 2396 | ||
| 7525 |
다빈치코드777
|
10년 전 | 1089 | |
| 7524 | 10년 전 | 1555 | ||
| 7523 | 10년 전 | 953 | ||
| 7522 |
|
10년 전 | 975 | |
| 7521 |
blackkil
|
10년 전 | 1854 | |
| 7520 | 10년 전 | 1273 | ||
| 7519 |
Gaumi
|
10년 전 | 1071 | |
| 7518 | 10년 전 | 1472 | ||
| 7517 | 10년 전 | 809 | ||
| 7516 | 10년 전 | 1272 | ||
| 7515 | 10년 전 | 1391 | ||
| 7514 |
|
10년 전 | 4480 | |
| 7513 |
멋진남자임
|
10년 전 | 1128 | |
| 7512 |
다빈치코드777
|
10년 전 | 861 | |
| 7511 |
|
10년 전 | 3381 | |
| 7510 | 10년 전 | 1355 | ||
| 7509 | 10년 전 | 1125 | ||
| 7508 | 10년 전 | 706 | ||
| 7507 |
senseme
|
10년 전 | 727 | |
| 7506 |
멋진남자임
|
10년 전 | 1622 | |
| 7505 | 10년 전 | 3979 | ||
| 7504 | 10년 전 | 2135 | ||
| 7503 | 10년 전 | 987 | ||
| 7502 | 10년 전 | 513 | ||
| 7501 | 10년 전 | 1430 | ||
| 7500 | 10년 전 | 1477 | ||
| 7499 | 10년 전 | 3362 | ||
| 7498 | 10년 전 | 1184 | ||
| 7497 |
dethos79
|
10년 전 | 2953 | |
| 7496 | 10년 전 | 2129 | ||
| 7495 | 10년 전 | 838 | ||
| 7494 |
CHAVO
|
10년 전 | 1112 | |
| 7493 | 10년 전 | 2630 | ||
| 7492 | 10년 전 | 1240 | ||
| 7491 | 10년 전 | 1445 | ||
| 7490 | 10년 전 | 2321 | ||
| 7489 | 10년 전 | 2112 | ||
| 7488 |
toptopon
|
10년 전 | 881 | |
| 7487 |
|
10년 전 | 1022 | |
| 7486 | 10년 전 | 3338 | ||
| 7485 | 10년 전 | 1299 | ||
| 7484 | 10년 전 | 1360 | ||
| 7483 | 10년 전 | 1017 | ||
| 7482 | 10년 전 | 646 | ||
| 7481 | 10년 전 | 853 | ||
| 7480 | 10년 전 | 1216 | ||
| 7479 | 10년 전 | 2593 | ||
| 7478 | 10년 전 | 1145 | ||
| 7477 |
멋진남자임
|
10년 전 | 1498 | |
| 7476 |
zeppeto
|
10년 전 | 1133 | |
| 7475 |
200점아빠
|
10년 전 | 906 | |
| 7474 | 10년 전 | 3996 | ||
| 7473 | 10년 전 | 977 | ||
| 7472 |
나르시스1
|
10년 전 | 1224 | |
| 7471 | 10년 전 | 867 | ||
| 7470 | 10년 전 | 1264 | ||
| 7469 |
플라이SINJI
|
10년 전 | 951 | |
| 7468 |
|
10년 전 | 531 | |
| 7467 |
|
10년 전 | 639 | |
| 7466 | 10년 전 | 1102 | ||
| 7465 | 10년 전 | 1170 | ||
| 7464 |
|
10년 전 | 1177 | |
| 7463 | 10년 전 | 1228 | ||
| 7462 |
진짜별사탕
|
10년 전 | 843 | |
| 7461 | 10년 전 | 932 | ||
| 7460 | 10년 전 | 3713 | ||
| 7459 |
멋진남자임
|
10년 전 | 1544 | |
| 7458 |
멋진남자임
|
10년 전 | 476 | |
| 7457 | 10년 전 | 909 | ||
| 7456 | 10년 전 | 752 | ||
| 7455 | 10년 전 | 2134 | ||
| 7454 | 10년 전 | 622 | ||
| 7453 | 10년 전 | 810 | ||
| 7452 |
중국어사이트제작
|
10년 전 | 501 | |
| 7451 | 10년 전 | 897 | ||
| 7450 | 10년 전 | 620 | ||
| 7449 |
울라라라우
|
10년 전 | 935 | |
| 7448 | 10년 전 | 1625 | ||
| 7447 |
멋진남자임
|
10년 전 | 490 | |
| 7446 | 10년 전 | 535 | ||
| 7445 |
네이비칼라
|
10년 전 | 1657 | |
| 7444 |
senseme
|
10년 전 | 1392 | |
| 7443 | 10년 전 | 1327 | ||
| 7442 | 10년 전 | 714 | ||
| 7441 |
멋진남자임
|
10년 전 | 1424 | |
| 7440 | 10년 전 | 882 | ||
| 7439 |
|
10년 전 | 744 | |
| 7438 |
|
10년 전 | 921 | |
| 7437 |
basement
|
10년 전 | 1024 | |
| 7436 |
잘살아보자
|
10년 전 | 1114 | |
| 7435 | 10년 전 | 1065 | ||
| 7434 | 10년 전 | 3782 | ||
| 7433 |
|
10년 전 | 2720 | |
| 7432 |
alexkim
|
10년 전 | 853 | |
| 7431 |
이웃집초보
|
10년 전 | 1297 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기