톡박에 한번 올렸던 소스인데 조금 다듬어서 올립니다.
적절히 수정&가공하시면 멋진 메뉴가 나올거에요~
<html>
<head>
<title>Menu</title>
</head>
<script>
var delay = 3; // 메뉴 스피드(낮을수록 빠름)
var m_length = 20; // 메뉴 간격
var sel_l_length = 30; // 선택한 메뉴와 이전 메뉴 간격
var sel_r_length = 60; // 선택한 메뉴와 다음 메뉴 간격
var m_sel = 0; // 메뉴 선택 상태
var m_max = 0; // 메인메뉴 갯수
var sm_alpha = 0; // 서브메뉴 투명도
var id = new Array(); // 메인메뉴 ID
var sid = new Array(); // 서브메뉴 ID
var m_top = 0; // 메인메뉴 y 위치
function on_load(){
while(document.getElementById("menu"+(m_max+1)) != null){
m_max++;
id[m_max] = document.getElementById("menu"+m_max);
sid[m_max] = document.getElementById("smenu"+m_max);
};
m_top = id[1].offsetTop;
m_act();
}
function m_over(m){
m_sel = m;
for(i=1;i<=m_max;i++){
if(sid[i] != null){
if(m_sel == i){
id[i].style.fontWeight = 'bold';
sid[i].style.display = "";
sm_alpha = 0;
if ((navigator.appName.indexOf('Microsoft')+1)) {
sid[i].filters.alpha.opacity = sm_alpha;
}else{
sid[i].style.opacity = (sm_alpha/100);
}
sid[i].style.top = id[i].offsetTop + id[i].offsetHeight + 40;
}else{
id[i].style.fontWeight = '';
sid[i].style.display = "none";
}
}
}
}
function m_act(){
var goy = 0;
for(i=1;i<=m_max;i++){
// 메인메뉴 좌우 이동
if(i>1)
temp = id[i-1].offsetWidth + id[i-1].offsetLeft;
if(i==1){
gox=id[i].offsetLeft;
}else if(m_sel == i){
gox = temp + sel_l_length;
}else if(m_sel+1 == i){
gox =temp + sel_r_length;
}else{
gox = temp + m_length;
}
id[i].style.left = Math.ceil(id[i].offsetLeft - (id[i].offsetLeft - (gox))/delay)+"px";
// 메인메뉴 상하 이동
if(m_sel == i){
id[i].style.top = Math.ceil(id[i].offsetTop - (id[i].offsetTop - (m_top + 7))/delay)+"px";
}else if(m_sel!=0){
id[i].style.top = Math.ceil(id[i].offsetTop - (id[i].offsetTop - (m_top - 5))/delay)+"px";
}
// 서브메뉴
if(m_sel == i && sid[i] != null){
// 서브메뉴 투명도
if(sm_alpha < 100){
sm_alpha += 5;
if ((navigator.appName.indexOf('Microsoft')+1)) {
sid[i].filters.alpha.opacity = sm_alpha;
}else{
sid[i].style.opacity = (sm_alpha/100);
}
}
// 서브메뉴 아래서부터 위로 나타남
goy = id[i].offsetTop + id[i].offsetHeight;
sid[i].style.top = (sid[i].offsetTop - (sid[i].offsetTop - goy)/delay)+"px";
}
}
setTimeout('m_act()',20);
}
</script>
<style>
.sm_a{color: #666666; text-decoration:none; padding:0px 3px 0px 2px}
.sm_a:hover {color: #FFFFFF; text-decoration:none; background:#666666; padding:0px 3px 0px 2px}
div{font-family:verdana; font-size:10px; letter-spacing:-1px}
.smenu{top:50px; position:absolute; filter:alpha(opacity=0); color:#DDDDDD}
.mmenu{top:30px; position:absolute; cursor:pointer; padding-right:2px; color:#666666}
</style>
<body onload='on_load()'>
<div class=mmenu style='left:200px;' id=menu1 onClick='m_over(1)'>
ABOUT US<br>
</div>
<div id='smenu1' class=smenu style='left:200px; display:none'><a href='' class=sm_a>menu1</a> | <a href='' class=sm_a>menu2</a> | <a href='' class=sm_a>menu3</a></div>
<div class=mmenu style='left:280px;' id=menu2 onClick='m_over(2)'>
PRODUCT<br>
</div>
<div id='smenu2' class=smenu style='left:250px; display:none'><a href='' class=sm_a>menu4</a> | <a href='' class=sm_a>menu5</a> | <a href='' class=sm_a>menu6</a></div>
<div class=mmenu style='left:360px;' id=menu3 onClick='m_over(3)'>
STORY<br>
</div>
<div id='smenu3' class=smenu style='left:310px; display:none'><a href='' class=sm_a>menu7</a> | <a href='' class=sm_a>menu8</a> | <a href='' class=sm_a>menu9</a></div>
</body>
</html>
적절히 수정&가공하시면 멋진 메뉴가 나올거에요~
<html>
<head>
<title>Menu</title>
</head>
<script>
var delay = 3; // 메뉴 스피드(낮을수록 빠름)
var m_length = 20; // 메뉴 간격
var sel_l_length = 30; // 선택한 메뉴와 이전 메뉴 간격
var sel_r_length = 60; // 선택한 메뉴와 다음 메뉴 간격
var m_sel = 0; // 메뉴 선택 상태
var m_max = 0; // 메인메뉴 갯수
var sm_alpha = 0; // 서브메뉴 투명도
var id = new Array(); // 메인메뉴 ID
var sid = new Array(); // 서브메뉴 ID
var m_top = 0; // 메인메뉴 y 위치
function on_load(){
while(document.getElementById("menu"+(m_max+1)) != null){
m_max++;
id[m_max] = document.getElementById("menu"+m_max);
sid[m_max] = document.getElementById("smenu"+m_max);
};
m_top = id[1].offsetTop;
m_act();
}
function m_over(m){
m_sel = m;
for(i=1;i<=m_max;i++){
if(sid[i] != null){
if(m_sel == i){
id[i].style.fontWeight = 'bold';
sid[i].style.display = "";
sm_alpha = 0;
if ((navigator.appName.indexOf('Microsoft')+1)) {
sid[i].filters.alpha.opacity = sm_alpha;
}else{
sid[i].style.opacity = (sm_alpha/100);
}
sid[i].style.top = id[i].offsetTop + id[i].offsetHeight + 40;
}else{
id[i].style.fontWeight = '';
sid[i].style.display = "none";
}
}
}
}
function m_act(){
var goy = 0;
for(i=1;i<=m_max;i++){
// 메인메뉴 좌우 이동
if(i>1)
temp = id[i-1].offsetWidth + id[i-1].offsetLeft;
if(i==1){
gox=id[i].offsetLeft;
}else if(m_sel == i){
gox = temp + sel_l_length;
}else if(m_sel+1 == i){
gox =temp + sel_r_length;
}else{
gox = temp + m_length;
}
id[i].style.left = Math.ceil(id[i].offsetLeft - (id[i].offsetLeft - (gox))/delay)+"px";
// 메인메뉴 상하 이동
if(m_sel == i){
id[i].style.top = Math.ceil(id[i].offsetTop - (id[i].offsetTop - (m_top + 7))/delay)+"px";
}else if(m_sel!=0){
id[i].style.top = Math.ceil(id[i].offsetTop - (id[i].offsetTop - (m_top - 5))/delay)+"px";
}
// 서브메뉴
if(m_sel == i && sid[i] != null){
// 서브메뉴 투명도
if(sm_alpha < 100){
sm_alpha += 5;
if ((navigator.appName.indexOf('Microsoft')+1)) {
sid[i].filters.alpha.opacity = sm_alpha;
}else{
sid[i].style.opacity = (sm_alpha/100);
}
}
// 서브메뉴 아래서부터 위로 나타남
goy = id[i].offsetTop + id[i].offsetHeight;
sid[i].style.top = (sid[i].offsetTop - (sid[i].offsetTop - goy)/delay)+"px";
}
}
setTimeout('m_act()',20);
}
</script>
<style>
.sm_a{color: #666666; text-decoration:none; padding:0px 3px 0px 2px}
.sm_a:hover {color: #FFFFFF; text-decoration:none; background:#666666; padding:0px 3px 0px 2px}
div{font-family:verdana; font-size:10px; letter-spacing:-1px}
.smenu{top:50px; position:absolute; filter:alpha(opacity=0); color:#DDDDDD}
.mmenu{top:30px; position:absolute; cursor:pointer; padding-right:2px; color:#666666}
</style>
<body onload='on_load()'>
<div class=mmenu style='left:200px;' id=menu1 onClick='m_over(1)'>
ABOUT US<br>
</div>
<div id='smenu1' class=smenu style='left:200px; display:none'><a href='' class=sm_a>menu1</a> | <a href='' class=sm_a>menu2</a> | <a href='' class=sm_a>menu3</a></div>
<div class=mmenu style='left:280px;' id=menu2 onClick='m_over(2)'>
PRODUCT<br>
</div>
<div id='smenu2' class=smenu style='left:250px; display:none'><a href='' class=sm_a>menu4</a> | <a href='' class=sm_a>menu5</a> | <a href='' class=sm_a>menu6</a></div>
<div class=mmenu style='left:360px;' id=menu3 onClick='m_over(3)'>
STORY<br>
</div>
<div id='smenu3' class=smenu style='left:310px; display:none'><a href='' class=sm_a>menu7</a> | <a href='' class=sm_a>menu8</a> | <a href='' class=sm_a>menu9</a></div>
</body>
</html>
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
댓글 10개
18년 전
우왓 ~ 고맙습니다. 지금 혼자 끙끙대던 건데^^
강강술냄세
18년 전
우아~이거 최곤데요
18년 전
와우 멋진데요 감사 합니다
18년 전
정말 좋네요 감사합니다.
18년 전
블루비 자료와 같은데..요?
17년 전
플레시메뉴처럼
17년 전
감사합니다^^
멋지네요 - ㅎㅎㅎ
멋지네요 - ㅎㅎㅎ
17년 전
좋네요!! 추천한방^^
14년 전
와,이거 정말 필요했었는데..감사합니다 ^^
13년 전
정말이지 자바스크립트의 무한한가능성을 다시 한번 되새겨봅니다.
정말 대단하시네요~ 감탄했습니다.
정말 수고많으셨습니다. 새해 복 많이받으세요^^
정말 대단하시네요~ 감탄했습니다.
정말 수고많으셨습니다. 새해 복 많이받으세요^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1530 |
1111111
|
18년 전 | 1965 | |
| 1529 |
행복속네잎크로버
|
18년 전 | 3462 | |
| 1528 |
행복속네잎크로버
|
18년 전 | 1844 | |
| 1527 |
1111111
|
18년 전 | 7644 | |
| 1526 |
1111111
|
18년 전 | 3285 | |
| 1525 |
행복속네잎크로버
|
18년 전 | 1269 | |
| 1524 |
행복속네잎크로버
|
18년 전 | 2303 | |
| 1523 |
행복속네잎크로버
|
18년 전 | 3506 | |
| 1522 |
행복속네잎크로버
|
18년 전 | 2362 | |
| 1521 |
행복속네잎크로버
|
18년 전 | 2139 | |
| 1520 |
행복속네잎크로버
|
18년 전 | 2762 | |
| 1519 |
행복속네잎크로버
|
18년 전 | 3721 | |
| 1518 |
행복속네잎크로버
|
18년 전 | 3484 | |
| 1517 |
행복속네잎크로버
|
18년 전 | 2567 | |
| 1516 |
행복속네잎크로버
|
18년 전 | 1916 | |
| 1515 |
행복속네잎크로버
|
18년 전 | 1936 | |
| 1514 |
행복속네잎크로버
|
18년 전 | 2512 | |
| 1513 |
행복속네잎크로버
|
18년 전 | 1988 | |
| 1512 | 18년 전 | 2877 | ||
| 1511 | 18년 전 | 1665 | ||
| 1510 | 18년 전 | 2208 | ||
| 1509 | 18년 전 | 1686 | ||
| 1508 | 18년 전 | 2138 | ||
| 1507 | 18년 전 | 2358 | ||
| 1506 | 18년 전 | 2296 | ||
| 1505 | 18년 전 | 2247 | ||
| 1504 | 18년 전 | 2177 | ||
| 1503 | 18년 전 | 3487 | ||
| 1502 | 18년 전 | 1669 | ||
| 1501 | 18년 전 | 3441 | ||
| 1500 | 18년 전 | 2025 | ||
| 1499 | 18년 전 | 5294 | ||
| 1498 | 18년 전 | 2157 | ||
| 1497 |
hsp1980
|
18년 전 | 2340 | |
| 1496 |
hsp1980
|
18년 전 | 1727 | |
| 1495 |
hsp1980
|
18년 전 | 2133 | |
| 1494 |
hsp1980
|
18년 전 | 3649 | |
| 1493 | 18년 전 | 1501 | ||
| 1492 | 18년 전 | 1745 | ||
| 1491 | 18년 전 | 4320 | ||
| 1490 | 18년 전 | 3707 | ||
| 1489 | 18년 전 | 3264 | ||
| 1488 | 18년 전 | 3366 | ||
| 1487 |
mixdesign
|
18년 전 | 3868 | |
| 1486 |
mixdesign
|
18년 전 | 4326 | |
| 1485 | 18년 전 | 4250 | ||
| 1484 | 18년 전 | 2700 | ||
| 1483 |
hsp1980
|
18년 전 | 2309 | |
| 1482 |
hsp1980
|
18년 전 | 3247 | |
| 1481 |
hsp1980
|
18년 전 | 3163 | |
| 1480 |
hsp1980
|
18년 전 | 3317 | |
| 1479 | 18년 전 | 3256 | ||
| 1478 |
|
18년 전 | 4921 | |
| 1477 |
|
18년 전 | 5209 | |
| 1476 | 18년 전 | 3407 | ||
| 1475 |
mixdesign
|
18년 전 | 2721 | |
| 1474 |
mixdesign
|
18년 전 | 2939 | |
| 1473 |
mixdesign
|
18년 전 | 2267 | |
| 1472 |
mixdesign
|
18년 전 | 2085 | |
| 1471 |
mixdesign
|
18년 전 | 2040 | |
| 1470 |
|
18년 전 | 3073 | |
| 1469 |
mixdesign
|
18년 전 | 2355 | |
| 1468 |
mixdesign
|
18년 전 | 2378 | |
| 1467 |
mixdesign
|
18년 전 | 2059 | |
| 1466 |
mixdesign
|
18년 전 | 2421 | |
| 1465 |
mixdesign
|
18년 전 | 3156 | |
| 1464 | 18년 전 | 4084 | ||
| 1463 | 18년 전 | 3376 | ||
| 1462 |
|
18년 전 | 1999 | |
| 1461 |
|
18년 전 | 1942 | |
| 1460 | 18년 전 | 2857 | ||
| 1459 | 18년 전 | 1655 | ||
| 1458 |
|
18년 전 | 2006 | |
| 1457 |
mixdesign
|
18년 전 | 2301 | |
| 1456 |
mixdesign
|
18년 전 | 2167 | |
| 1455 | 18년 전 | 2273 | ||
| 1454 | 18년 전 | 4041 | ||
| 1453 | 18년 전 | 1778 | ||
| 1452 | 18년 전 | 4397 | ||
| 1451 | 18년 전 | 2929 | ||
| 1450 | 18년 전 | 2221 | ||
| 1449 | 18년 전 | 3267 | ||
| 1448 | 18년 전 | 2900 | ||
| 1447 | 18년 전 | 2825 | ||
| 1446 | 18년 전 | 5637 | ||
| 1445 | 18년 전 | 2295 | ||
| 1444 | 18년 전 | 3410 | ||
| 1443 |
|
18년 전 | 3329 | |
| 1442 | 18년 전 | 3716 | ||
| 1441 | 18년 전 | 3268 | ||
| 1440 | 18년 전 | 2445 | ||
| 1439 | 18년 전 | 2091 | ||
| 1438 | 18년 전 | 2543 | ||
| 1437 | 18년 전 | 6112 | ||
| 1436 | 18년 전 | 2734 | ||
| 1435 | 18년 전 | 4547 | ||
| 1434 | 18년 전 | 2047 | ||
| 1433 | 18년 전 | 10037 | ||
| 1432 | 18년 전 | 2481 | ||
| 1431 |
Psychedelico
|
18년 전 | 1546 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기