자바스크립으로 플래쉬 메뉴처럼

톡박에 한번 올렸던 소스인데 조금 다듬어서 올립니다.
적절히 수정&가공하시면 멋진 메뉴가 나올거에요~

<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개

우왓 ~ 고맙습니다. 지금 혼자 끙끙대던 건데^^
우아~이거 최곤데요
와우 멋진데요 감사 합니다
정말 좋네요 감사합니다.
블루비 자료와 같은데..요?
플레시메뉴처럼
감사합니다^^

멋지네요 - ㅎㅎㅎ
좋네요!! 추천한방^^
와,이거 정말 필요했었는데..감사합니다 ^^
정말이지 자바스크립트의 무한한가능성을 다시 한번 되새겨봅니다.
정말 대단하시네요~ 감탄했습니다.
정말 수고많으셨습니다. 새해 복 많이받으세요^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
18년 전 조회 3,649
18년 전 조회 1,831
18년 전 조회 3,604
18년 전 조회 2,171
18년 전 조회 5,456
18년 전 조회 2,304
18년 전 조회 2,490
18년 전 조회 1,895
18년 전 조회 2,293
18년 전 조회 3,812
18년 전 조회 1,668
18년 전 조회 1,897
18년 전 조회 4,472
18년 전 조회 3,878
18년 전 조회 3,420
18년 전 조회 3,534
18년 전 조회 4,032
18년 전 조회 4,493
18년 전 조회 4,419
18년 전 조회 2,847
18년 전 조회 2,485
18년 전 조회 3,411
18년 전 조회 3,321
18년 전 조회 3,497
18년 전 조회 3,421
18년 전 조회 5,078
18년 전 조회 5,372
18년 전 조회 3,582
18년 전 조회 2,883
18년 전 조회 3,123
18년 전 조회 2,445
18년 전 조회 2,244
18년 전 조회 2,196
18년 전 조회 3,232
18년 전 조회 2,498
18년 전 조회 2,528
18년 전 조회 2,221
18년 전 조회 2,583
18년 전 조회 3,343
18년 전 조회 4,266
18년 전 조회 3,517
18년 전 조회 2,187
18년 전 조회 2,121
18년 전 조회 3,031
18년 전 조회 1,832
18년 전 조회 2,185
18년 전 조회 2,462
18년 전 조회 2,348
18년 전 조회 2,442
18년 전 조회 4,190
18년 전 조회 1,958
18년 전 조회 4,536
18년 전 조회 3,098
18년 전 조회 2,408
18년 전 조회 3,441
18년 전 조회 3,074
18년 전 조회 2,998
18년 전 조회 5,788
18년 전 조회 2,457
18년 전 조회 3,593
18년 전 조회 3,491
18년 전 조회 3,878
18년 전 조회 3,427
18년 전 조회 2,603
18년 전 조회 2,271
18년 전 조회 2,706
18년 전 조회 6,280
18년 전 조회 2,918
18년 전 조회 4,718
18년 전 조회 2,206
18년 전 조회 1만
18년 전 조회 2,654
18년 전 조회 1,714
18년 전 조회 3,153
18년 전 조회 3,097
18년 전 조회 2,985
18년 전 조회 2,304
18년 전 조회 2,498
18년 전 조회 3,040
18년 전 조회 3,129
18년 전 조회 4,292
18년 전 조회 6,275
18년 전 조회 2,225
18년 전 조회 2,337
18년 전 조회 2,044
18년 전 조회 1,799
18년 전 조회 2,794
18년 전 조회 1,836
18년 전 조회 1,708
18년 전 조회 4,894
18년 전 조회 1,948
18년 전 조회 1,991
18년 전 조회 1,995
18년 전 조회 2,123
18년 전 조회 3,788
18년 전 조회 1,798
18년 전 조회 1,678
18년 전 조회 1,513
18년 전 조회 2,008
18년 전 조회 2,053