E

스타일 시트를 이용한 롤오버 버튼 메뉴 효과 나타내기

롤오버 버튼 효과를 구현하려면 2개의 이미지가 필요하지만, 스타일 시트를 이용하여 한개의 이미지로 3가지 (보통,오버,클릭) 버튼의 효과를 구현할 수 있습니다

샘플을 참고 하세요

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> jasko sample script </title>

<!---- [1단계] 아래 코드를 <HEAD> 와 <HEAD> 태그 사이에 붙여 넣으세요 --->

<style type="text/css">
<!--

/* 배경색을 지정합니다. 이 배경색을 바꾸려면 아래 버튼(.btnout)의 색상도 같이 수정해 주어야 합니다 */
body { background:gold;}

/* 버튼 메뉴 전체의 위치와 크기를 설정 합니다 */
#btn { position:absolute; top:10px; left:10; width:150px; z-index:1;}

/* 평상시 보여지는 버튼의 모양입니다 */
.btnout {
border:gold 1px solid;
padding:2 0 0 0;
margin:2px;
}

/* 마우스를 대었을때 보여질 버튼의 보양입니다 */
.btnup {
border-top: white 1px solid;
border-right: green 1px solid;
border-bottom: green 1px solid;
border-left: white 1px solid;
padding:0 0 0 0;
margin:2px;
}

/* 마우스를 클릭 했을때 보여질 모양입니다 */
.btndown {
border-top: black 1px solid;
border-right: white 1px solid;
border-bottom: white 1px solid;
border-left: black 1px solid;
padding:0 0 0 0;
margin:2px;
}
-->
</style>

</head>

<body>

<!---- [2단계] 아래의 방법으로 <BODY> 와 <BODY> 태그 사이에 붙여 넣으세요 --->

<div id=btn>
<a href="#" target="_blank"><span id=menu0 class=btnout><img src="button.gif" border=0 alt=""></span></a><br>
<a href="#" target="_blank"><span id=menu1 class=btnout><img src="button.gif" border=0 alt=""></span></a><br>
<a href="#" target="_blank"><span id=menu2 class=btnout><img src="button.gif" border=0 alt=""></span></a><br>
<a href="#" target="_blank"><span id=menu3 class=btnout><img src="button.gif" border=0 alt=""></span></a><br>
<a href="#" target="_blank"><span id=menu4 class=btnout><img src="button.gif" border=0 alt=""></span></a><br>
<a href="#" target="_blank"><span id=menu5 class=btnout><img src="button.gif" border=0 alt=""></span></a><br>
<a href="#" target="_blank"><span id=menu6 class=btnout><img src="button.gif" border=0 alt=""></span></a><br>
<a href="#" target="_blank"><span id=menu7 class=btnout><img src="button.gif" border=0 alt=""></span></a>
</div>

<SCRIPT language=JavaScript>
<!--

menuNumber = 8; // 전체 버튼의 갯수를 적어 주세요
maxWidth = 0;

for(i=0; i < menuNumber; i++){
menu = eval('menu' + i);
maxWidth = Math.max(maxWidth, menu.innerText.length);
menu.onselectstart = function(){return false}

menu.onmouseout = function(){
this.className = 'btnout';
}

menu.onmouseover = function(){
this.className = 'btnup';
}

menu.onmouseup = function(){
this.className = 'btnup';
}

menu.onmousedown = function(){
this.className = 'btndown';
}
}

for (i=0 ; i < menuNumber ; i++){
menu = eval('menu' + i);
menu.style.pixelWidth = maxWidth * 8;
}
-->
</SCRIPT>

<!------------------------- 여기까지 ------------------------------------>


</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>

첨부파일

menu_10.zip (3.2 KB) 185회 2006-05-11 11:00
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
19년 전 조회 3,228
19년 전 조회 6,906
19년 전 조회 2,859
19년 전 조회 3,325
19년 전 조회 3,227
19년 전 조회 2,065
19년 전 조회 3,493
19년 전 조회 2,319
19년 전 조회 2,838
19년 전 조회 2,482
19년 전 조회 4,507
19년 전 조회 2,623
19년 전 조회 2,892
19년 전 조회 3,651
19년 전 조회 3,851
19년 전 조회 3,390
19년 전 조회 2,609
19년 전 조회 3,179
19년 전 조회 4,041
19년 전 조회 3,910
19년 전 조회 1,847
19년 전 조회 2,336
19년 전 조회 5,557
19년 전 조회 6,850
19년 전 조회 2,697
19년 전 조회 2,262
19년 전 조회 2,732
19년 전 조회 3,407
19년 전 조회 3,638
19년 전 조회 3,120
19년 전 조회 2,737
19년 전 조회 4,845
19년 전 조회 6,847
19년 전 조회 5,124
19년 전 조회 6,087
19년 전 조회 2,811
19년 전 조회 2,630
19년 전 조회 2,338
19년 전 조회 2,439
19년 전 조회 4,739
19년 전 조회 4,796
19년 전 조회 2,656
19년 전 조회 2,311
19년 전 조회 2,644
19년 전 조회 3,273
19년 전 조회 3,058
19년 전 조회 2,038
19년 전 조회 2,103
19년 전 조회 3,280
19년 전 조회 2,496
19년 전 조회 3,759
19년 전 조회 2,697
19년 전 조회 1,991
19년 전 조회 2,604
19년 전 조회 1,860
19년 전 조회 1,536
19년 전 조회 1,668
19년 전 조회 1,954
19년 전 조회 1,716
19년 전 조회 1,906
19년 전 조회 1,697
19년 전 조회 2,095
19년 전 조회 1,980
19년 전 조회 1,591
19년 전 조회 1,588
19년 전 조회 1,491
19년 전 조회 1,369
19년 전 조회 1,544
19년 전 조회 2,116
19년 전 조회 2,521
19년 전 조회 3,030
19년 전 조회 2,446
19년 전 조회 1,942
19년 전 조회 7,160
19년 전 조회 3,862
19년 전 조회 2,476
19년 전 조회 2,486
19년 전 조회 2,983
19년 전 조회 5,905
19년 전 조회 5,691
19년 전 조회 2,375
19년 전 조회 3,427
19년 전 조회 2,994
19년 전 조회 2,349
19년 전 조회 2,870
19년 전 조회 1,724
19년 전 조회 1,871
19년 전 조회 1,971
19년 전 조회 2,142
19년 전 조회 1,808
19년 전 조회 1,954
19년 전 조회 1,912
19년 전 조회 1,992
19년 전 조회 1,659
19년 전 조회 2,783
19년 전 조회 2,113
19년 전 조회 3,376
19년 전 조회 3,406
19년 전 조회 2,660
19년 전 조회 2,742