E

마우스를 움직이면 화살표가 따라 움직이고, 클릭하면 화살표가 붙어 있는 롤오버 메뉴 스크립트 만들기

깔끔한 롤오버 이미지버튼 메뉴 스크립트 입니다

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title> jasko sample script </title>

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

<SCRIPT LANGUAGE="javascript">

var num = 0;

// 메뉴에 사용할 이미지들을 설정 합니다

Image1on = new Image();
Image1on.src = "menu_1_on.gif"; // 마우스를 올렸을때의 이미지
Image1off = new Image();
Image1off.src = "menu_1.gif"; // 평상시의 이미지

Image2on = new Image();
Image2on.src = "menu_2_on.gif";
Image2off = new Image();
Image2off.src = "menu_2.gif";

Image3on = new Image();
Image3on.src = "menu_3_on.gif";
Image3off = new Image();
Image3off.src = "menu_3.gif";

Image4on = new Image();
Image4on.src = "menu_4_on.gif";
Image4off = new Image();
Image4off.src = "menu_4.gif";

Image5on = new Image();
Image5on.src = "menu_5_on.gif";
Image5off = new Image();
Image5off.src = "menu_5.gif";

// 이런식으로 메뉴에 사용할 이미지들을 추가해서 사용합니다

function img_act(imgName) {
imgOn = eval(imgName + "on.src");
document [imgName].src = imgOn;
}
function img_inact(imgName) {
imgOff = eval(imgName + "off.src");
document [imgName].src = imgOff;
}
function inact(imgName) {
img_inact(imgName);
change(0);
}
function change(selected_num) {
if(selected_num != 0) {
num = selected_num;
}
for(i = 1; i <= 5; i++) {
imgName = "Image" + i;

if(num !=i ) {
img_inact(imgName);
} else {
img_act(imgName);
}
}
}

</SCRIPT>

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

</HEAD>

<!---- [2단계] 아래 코드를 <BODY> 태그 안에 붙여 넣으세요 --->

<BODY onLoad="change(1)">

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

<A HREF="#" onfocus="this.blur()" onMouseout="inact('Image1')" onMouseover="img_act('Image1')" onClick="change(1)">
<IMG NAME="Image1" BORDER="0" SRC="menu_1.gif"></A><BR>
<A HREF="#" onfocus="this.blur()" onMouseout="inact('Image2')" onMouseover="img_act('Image2')" onClick="change(2)">
<IMG NAME="Image2" BORDER="0" src="menu_2.gif"></A><BR>
<A HREF="#" onfocus="this.blur()" onMouseout="inact('Image3')" onMouseover="img_act('Image3')" onClick="change(3)">
<IMG NAME="Image3" BORDER="0" src="menu_3.gif"></A><BR>
<A HREF="#" onfocus="this.blur()" onMouseout="inact('Image4')" onMouseover="img_act('Image4')" onClick="change(4)">
<IMG NAME="Image4" BORDER="0" src="menu_4.gif"></A><BR>
<A HREF="#" onfocus="this.blur()" onMouseout="inact('Image5')" onMouseover="img_act('Image5')" onClick="change(5)">
<IMG NAME="Image5" BORDER="0" src="menu_5.gif"></A>

<p>마우스를 올리거나 클릭 해 보세요

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

</BODY>
</HTML><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
19년 전 조회 3,325
19년 전 조회 3,227
19년 전 조회 2,064
19년 전 조회 3,493
19년 전 조회 2,319
19년 전 조회 2,838
19년 전 조회 2,480
19년 전 조회 4,504
19년 전 조회 2,623
19년 전 조회 2,891
19년 전 조회 3,650
19년 전 조회 3,850
19년 전 조회 3,389
19년 전 조회 2,608
19년 전 조회 3,178
19년 전 조회 4,041
19년 전 조회 3,910
19년 전 조회 1,844
19년 전 조회 2,336
19년 전 조회 5,556
19년 전 조회 6,849
19년 전 조회 2,697
19년 전 조회 2,260
19년 전 조회 2,732
19년 전 조회 3,406
19년 전 조회 3,638
19년 전 조회 3,118
19년 전 조회 2,736
19년 전 조회 4,845
19년 전 조회 6,847
19년 전 조회 5,123
19년 전 조회 6,087
19년 전 조회 2,811
19년 전 조회 2,630
19년 전 조회 2,338
19년 전 조회 2,438
19년 전 조회 4,739
19년 전 조회 4,796
19년 전 조회 2,656
19년 전 조회 2,309
19년 전 조회 2,643
19년 전 조회 3,273
19년 전 조회 3,058
19년 전 조회 2,036
19년 전 조회 2,102
19년 전 조회 3,279
19년 전 조회 2,495
19년 전 조회 3,759
19년 전 조회 2,696
19년 전 조회 1,991
19년 전 조회 2,604
19년 전 조회 1,859
19년 전 조회 1,536
19년 전 조회 1,668
19년 전 조회 1,952
19년 전 조회 1,714
19년 전 조회 1,905
19년 전 조회 1,697
19년 전 조회 2,095
19년 전 조회 1,980
19년 전 조회 1,590
19년 전 조회 1,587
19년 전 조회 1,491
19년 전 조회 1,368
19년 전 조회 1,544
19년 전 조회 2,115
19년 전 조회 2,521
19년 전 조회 3,030
19년 전 조회 2,446
19년 전 조회 1,941
19년 전 조회 7,160
19년 전 조회 3,861
19년 전 조회 2,476
19년 전 조회 2,486
19년 전 조회 2,983
19년 전 조회 5,904
19년 전 조회 5,691
19년 전 조회 2,375
19년 전 조회 3,427
19년 전 조회 2,994
19년 전 조회 2,349
19년 전 조회 2,870
19년 전 조회 1,723
19년 전 조회 1,871
19년 전 조회 1,971
19년 전 조회 2,142
19년 전 조회 1,808
19년 전 조회 1,954
19년 전 조회 1,911
19년 전 조회 1,992
19년 전 조회 1,659
19년 전 조회 2,782
19년 전 조회 2,112
19년 전 조회 3,375
19년 전 조회 3,406
19년 전 조회 2,659
19년 전 조회 2,742
19년 전 조회 2,569
19년 전 조회 2,822
19년 전 조회 2,817