불여우에서도 되는 메뉴 2

· 21년 전 · 2690
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <html> <head> <base target="main"> <title> 메뉴</title> </head> <body bgcolor="#ffffff" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"> <br><br><br> <script language="javascript"> table_height = 20; // 표(Table) 높이를 정한다. xmenu = new Array; xsubmenu = new Array; //타이틀 제목을 써준다 xmenu[0] = 'menu1'; xmenu[1] = 'menu2'; xmenu[2] = 'menu3'; xmenu[3] = 'menu4'; //기본값을 위해 해당 메뉴만큼 null값을 채워준다 xsubmenu[0] = '' xsubmenu[1] = '' xsubmenu[2] = '' xsubmenu[3] = '' xsubmenu[0] += '<a href="#" class=menudyn3>menu1-1</a>'; xsubmenu[1] += '<a href="http://google.co.kr" class=menudyn3>menu2-1</a>'; xsubmenu[2] += '<a href="#" class=menudyn3>menu3-1</a>'; xsubmenu[2] += ' <font color=#FFFFFF>|</font> ' xsubmenu[2] += '<a href="http://google.co.kr" target="_blank" class=menudyn3>menu3-2</a>'; xsubmenu[2] += ' <font color=#FFFFFF>|</font> ' xsubmenu[2] += '<a href="http://google.co.kr" class=menudyn3>menu3-3</a>'; xsubmenu[3] += '<a href="#" class=menudyn3>menu4-1</a>'; xsubmenu[3] += ' <font color=#FFFFFF>|</font> ' xsubmenu[3] += '<a href="hayan.htm" class=menudyn3>menu4-2</a>'; xsubmenu[3] += ' <font color=#FFFFFF>|</font> ' xsubmenu[3] += '<a href="family.htm" class=menudyn3>menu4-3</a>'; //메뉴에 스타일 시트 적용 document.write('<STYLE TYPE="text/css">'); document.write('A.menudyn3 {color:#333333; text-decoration:none;}'); document.write('A:link {text-decoration: none}'); document.write('A:visited {text-decoration: none}'); document.write('A:hover {color: #999999; text-decoration: none}'); document.write('BODY,tr,td,INPUT{font-size:9pt;font-family:Verdana,굴림,Tahoma,Verdana,MS Sans Serif,Courier New;}'); document.write('</STYLE>'); // 테이블 시작 document.write('<div align=center>'); document.write('<table width='+(xsubmenu.length*100)+' bgcolor=#FFFFFF cellpadding=0 cellspacing=0 border=0>'); document.write('<tr>'); document.write('<td>'); document.write('<table cellpadding=5 cellspacing=1 border=0 width=100%>'); document.write('<tr>'); // 메인메뉴 시작 for(i=0;i<xsubmenu.length;i++) { document.write('<td onMouseOver="javascript:colorIt(this);MajMenu('+i+')" align=center ID=td'+i+'>'); document.write('<b><a href="#" onClick="return(false)" onMouseOver="MajMenu('+i+')" CLASS=menudyn3>'+xmenu[i]+'</a></b>'); document.write('</td>'); // 메인메뉴 끝 } document.write('</tr>'); document.write('<tr>'); //서브메뉴 시작 var td_align= "center"; // 서브메뉴 수평 정렬 (left,center,right) document.write('<td colspan='+(xsubmenu.length)+' bgcolor=#ffffff height='+table_height+' align='+td_align+' valign=middle>'); document.write('<ilayer id="dynamenu31" width=100% height='+table_height+'>'); document.write('<layer id="dynamenu32" width=100% height='+table_height+'>'); document.write('<div id="dynamenu33"> </div>'); document.write('</layer>'); document.write('</ilayer>'); document.write('</td>'); //서브메뉴 끝 document.write('</tr></table>'); document.write('</td></tr></table>'); document.write('</div>'); // 테이블 끝 // 테이블 백그라운드 컬러 시작 function colorIt(tditem) { if(document.all) { // 메뉴가 늘어나면 추가한다 ==> 선택안되을때 배경색 document.all.td0.style.background='#AABBFF'; document.all.td1.style.background='#AABBFF'; document.all.td2.style.background='#AABBFF'; document.all.td3.style.background='#AABBFF'; tditem.style.background='#FFAAAA';// 메뉴가 선택 되었을대 표(Table) 배경색 } else if(document.getElementById) { // 메뉴가 늘어나면 추가한다 ==> 선택안되을때 배경색 document.getElementById("td0").style.background='#AABBFF'; document.getElementById("td1").style.background='#AABBFF'; document.getElementById("td2").style.background='#AABBFF'; document.getElementById("td3").style.background='#AABBFF'; tditem.style.background='#FFAAAA';// 메뉴가 선택 되었을대 표(Table) 배경색 } } //테이블 백그라운 컬러 끝 function MajMenu(menu) { //타이틀 메뉴를 제어한다 which = xsubmenu[menu]; if (document.layers){ document.dynamenu31.document.dynamenu32.document.write('<b>'+which+'</b>') document.dynamenu31.document.dynamenu32.document.close() } else if (document.getElementById) { // 서브메뉴를 제어한다 document.getElementById("dynamenu33").innerHTML = '<center><b>'+which+'</b></center>'; } else if (document.all) { dynamenu33.innerHTML=' ' dynamenu33.innerHTML='<b>'+which+'</b>'; } } if (document.getElementById) colorIt(document.getElementById("td0")); // 현재 기본은 td0 ==> 메뉴1로 지정됨 else if (document.all) colorIt(document.all.td0); // 현재 기본은 td0 ==> 메뉴1로 지정됨 MajMenu(0); // 기본 서브메뉴 지정 ==> 현재 서브 메뉴 1로 지정됨 </SCRIPT> </body> </html>
[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
20년 전 조회 1,608
20년 전 조회 1,706
20년 전 조회 2,280
20년 전 조회 1,748
20년 전 조회 3,874
20년 전 조회 2,757
20년 전 조회 2,192
20년 전 조회 2,886
20년 전 조회 1,852
20년 전 조회 1,730
20년 전 조회 2,684
20년 전 조회 1,589
20년 전 조회 1,849
20년 전 조회 3,351
20년 전 조회 2,007
20년 전 조회 1,728
20년 전 조회 5,063
20년 전 조회 4,687
20년 전 조회 3,625
20년 전 조회 3,901
20년 전 조회 7,178
20년 전 조회 3,654
20년 전 조회 2,733
20년 전 조회 2,736
20년 전 조회 7,301
20년 전 조회 4,715
20년 전 조회 2,010
20년 전 조회 3,360
20년 전 조회 2,064
20년 전 조회 1,670
20년 전 조회 2,422
20년 전 조회 1,901
20년 전 조회 1,567
20년 전 조회 1,920
20년 전 조회 3,092
20년 전 조회 2,566
20년 전 조회 1,846
20년 전 조회 1,775
20년 전 조회 4,101
20년 전 조회 3,044
20년 전 조회 3,763
20년 전 조회 3,551
21년 전 조회 3,866
21년 전 조회 8,678
21년 전 조회 2,707
21년 전 조회 3,866
21년 전 조회 3,321
21년 전 조회 2,716
21년 전 조회 2,781
21년 전 조회 2,691
21년 전 조회 2,974
21년 전 조회 3,149
21년 전 조회 5,417
21년 전 조회 4,016
21년 전 조회 5,065
21년 전 조회 6,315
21년 전 조회 7,445
21년 전 조회 1.9만
21년 전 조회 6,997
21년 전 조회 2,990
21년 전 조회 4,257
21년 전 조회 2,597
21년 전 조회 4,428
21년 전 조회 3,008
21년 전 조회 2,362
21년 전 조회 2,584
21년 전 조회 2,343
21년 전 조회 2,674
21년 전 조회 1,856
21년 전 조회 1,681
21년 전 조회 1,756
21년 전 조회 2,222
21년 전 조회 1,990
21년 전 조회 2,484
21년 전 조회 3,680
21년 전 조회 1,684
21년 전 조회 1,880
21년 전 조회 3,295
21년 전 조회 2,473
21년 전 조회 3,273
21년 전 조회 2,996
21년 전 조회 3,413
21년 전 조회 5,228
21년 전 조회 2,644
21년 전 조회 4,931
21년 전 조회 2,620
21년 전 조회 3,226
21년 전 조회 7,727
21년 전 조회 3,944
21년 전 조회 3,330
21년 전 조회 4,817
21년 전 조회 3,021
21년 전 조회 6,347
21년 전 조회 4,597
21년 전 조회 5,895
21년 전 조회 3,749
21년 전 조회 6,085
21년 전 조회 3,235
21년 전 조회 2,951
21년 전 조회 2,740