부드럽게 스크롤 되는 트리구조형 메뉴 스크립트
주메뉴를 클릭하면 하위메뉴가 열리고, 다른 메뉴를 클릭하면 이전 부메뉴들은 닫히게 됩니다
<!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년 전
파일 올렸습니다..
죄송합니다..ㅎㅎ
죄송합니다..ㅎㅎ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1130 | 18년 전 | 2467 | ||
| 1129 | 18년 전 | 2452 | ||
| 1128 | 18년 전 | 2320 | ||
| 1127 | 18년 전 | 2558 | ||
| 1126 |
|
18년 전 | 3856 | |
| 1125 | 18년 전 | 3660 | ||
| 1124 |
|
18년 전 | 2094 | |
| 1123 | 18년 전 | 2029 | ||
| 1122 | 18년 전 | 1570 | ||
| 1121 | 18년 전 | 3899 | ||
| 1120 | 18년 전 | 5893 | ||
| 1119 | 18년 전 | 6988 | ||
| 1118 | 18년 전 | 2471 | ||
| 1117 |
BEST79
|
18년 전 | 2725 | |
| 1116 | 18년 전 | 4185 | ||
| 1115 | 18년 전 | 2178 | ||
| 1114 |
|
18년 전 | 3633 | |
| 1113 | 18년 전 | 2875 | ||
| 1112 | 18년 전 | 2734 | ||
| 1111 | 18년 전 | 2198 | ||
| 1110 | 18년 전 | 2471 | ||
| 1109 | 18년 전 | 2607 | ||
| 1108 | 18년 전 | 3092 | ||
| 1107 | 18년 전 | 3734 | ||
| 1106 | 18년 전 | 3268 | ||
| 1105 | 18년 전 | 2785 | ||
| 1104 |
|
18년 전 | 2272 | |
| 1103 | 18년 전 | 2942 | ||
| 1102 | 18년 전 | 3025 | ||
| 1101 | 18년 전 | 2537 | ||
| 1100 | 18년 전 | 2297 | ||
| 1099 | 18년 전 | 3325 | ||
| 1098 | 18년 전 | 4846 | ||
| 1097 | 18년 전 | 5083 | ||
| 1096 | 18년 전 | 2300 | ||
| 1095 | 18년 전 | 2186 | ||
| 1094 | 18년 전 | 5002 | ||
| 1093 | 18년 전 | 8966 | ||
| 1092 | 18년 전 | 2040 | ||
| 1091 |
DeepnBlue
|
18년 전 | 4919 | |
| 1090 |
|
18년 전 | 4369 | |
| 1089 |
도날드주주
|
18년 전 | 2609 | |
| 1088 |
|
18년 전 | 4959 | |
| 1087 | 18년 전 | 2789 | ||
| 1086 | 18년 전 | 3672 | ||
| 1085 | 18년 전 | 2619 | ||
| 1084 | 18년 전 | 3433 | ||
| 1083 | 18년 전 | 1941 | ||
| 1082 | 18년 전 | 5374 | ||
| 1081 | 18년 전 | 1694 | ||
| 1080 | 18년 전 | 6051 | ||
| 1079 |
|
18년 전 | 2880 | |
| 1078 | 18년 전 | 6041 | ||
| 1077 |
|
18년 전 | 6841 | |
| 1076 | 18년 전 | 3727 | ||
| 1075 | 18년 전 | 2207 | ||
| 1074 |
hwatta
|
18년 전 | 2099 | |
| 1073 | 18년 전 | 6899 | ||
| 1072 | 18년 전 | 2397 | ||
| 1071 | 18년 전 | 3956 | ||
| 1070 |
|
18년 전 | 5345 | |
| 1069 | 18년 전 | 2691 | ||
| 1068 | 18년 전 | 1751 | ||
| 1067 | 18년 전 | 1583 | ||
| 1066 | 18년 전 | 1533 | ||
| 1065 | 18년 전 | 1810 | ||
| 1064 | 18년 전 | 1804 | ||
| 1063 | 18년 전 | 1781 | ||
| 1062 | 18년 전 | 1715 | ||
| 1061 | 18년 전 | 2511 | ||
| 1060 | 18년 전 | 2313 | ||
| 1059 | 18년 전 | 3465 | ||
| 1058 | 18년 전 | 2594 | ||
| 1057 | 18년 전 | 2575 | ||
| 1056 | 18년 전 | 3411 | ||
| 1055 | 18년 전 | 4626 | ||
| 1054 | 18년 전 | 2963 | ||
| 1053 | 18년 전 | 2811 | ||
| 1052 | 18년 전 | 3350 | ||
| 1051 | 18년 전 | 6278 | ||
| 1050 | 18년 전 | 2180 | ||
| 1049 | 18년 전 | 1992 | ||
| 1048 | 18년 전 | 1947 | ||
| 1047 | 18년 전 | 2009 | ||
| 1046 | 18년 전 | 3195 | ||
| 1045 | 18년 전 | 2263 | ||
| 1044 | 18년 전 | 1955 | ||
| 1043 | 18년 전 | 1620 | ||
| 1042 | 18년 전 | 2079 | ||
| 1041 | 18년 전 | 3366 | ||
| 1040 | 18년 전 | 3232 | ||
| 1039 | 18년 전 | 1921 | ||
| 1038 | 18년 전 | 1496 | ||
| 1037 | 18년 전 | 3191 | ||
| 1036 | 18년 전 | 2060 | ||
| 1035 | 18년 전 | 1614 | ||
| 1034 | 18년 전 | 2837 | ||
| 1033 | 18년 전 | 1972 | ||
| 1032 | 18년 전 | 1845 | ||
| 1031 | 18년 전 | 1819 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기