레이어를 이용한 셀렉트 박스

· 2014-05-09 (금) 19:20:40 · 4609
아래 소스는 제가 퍼블리싱 하면서 만들었던 레이어 셀렉트 박스 소스인데요.

제이쿼리를 이용해서 아주 간단하게 만든것이에요.

기능적으로 조금만 더 추가하면 select tag와 동일하게 사용할 수 있을 거라
생각해요.

제이쿼리와 css를 좀 아시면 금방 해석 가능할 것에요.

$(document).ready(function() {
    ////////////////////////////////////////////////////////////////////////////////////
    //javascript:location.href='#'     <====  # 부분에 url을 넣는다.
    ////////////////////////////////////////////////////////////////////////////////////
    var selecttag = "\
            <div id='choicevalue'><img src=\"/images/engicon.png\" alt=\"ENG\" /></div>\
            <dl>\
                <dd onClick=\"javascript:location.href='#'\"><img src=\"/images/engicon.png\" alt=\"ENG\" width=80 height=20/></dd>\
                <dd onClick=\"javascript:location.href='#'\"><img src=\"/images/koricon.png\" alt=\"KOR\" width=80 height=20 /></dd>\
            </dl>\
    ";
    // GNB
    $(".gnb").append($("<li class=\"end\" id=\"selectmenu\">"+selecttag+"</li>"));    //<=== 이부분에 셀렉트박스 추가



    //////////////////////////////////////////////////////////////////////////////////////////////
    //레이어 셀렉트박스
    //////////////////////////////////////////////////////////////////////////////////////////////
        var defaultheight = 24;
        var defaultwidth = 80;
        var maxheight = defaultheight;
        var top = defaultheight + 4;

        $('#selectmenu').css({'padding':'2px 0','cursor':'pointer','height':defaultheight+'px','width':defaultwidth+'px','color':'#d7d7d7','position':'relative','z-index':'1000'});
        function ShowSelect(){
            $('#choicevalue').css({'clear':'both','padding':'2px 0','height':defaultheight+'px','width':defaultwidth+'px'});        
            
            var ddcnt = $('#selectmenu').children("dl").children("dd").length;
            maxheight = defaultheight * ddcnt;
            $('#selectmenu').children("dl").css({"clear":"both","position":"absolute","left":"0px","top":top+"px","z-index":"10000","height":maxheight+"px","width":defaultwidth+"px",'border':'1px solid #fff','background':'#6d656a'});
            $('#selectmenu').children("dl").children("dd").css({"clear":"both","height":defaultheight+"px","width":defaultwidth+"px"},{'padding':'2px 0px'});
            $('#selectmenu').css({"height":(maxheight+defaultheight+10)+"px"});
        }

        function HideSelect(){
            $('#selectmenu').animate({'height':defaultheight+'px'});    
        }
        $('#selectmenu').mouseenter(function(){
            ShowSelect();
        });

        $("#selectmenu").children("dl").children("dd").click(function(){
            $('#choicevalue').html($(this).html());
            HideSelect();
        });
        $('#selectmenu').mouseleave(function(){
            HideSelect();
        });

        ShowSelect();

        setTimeout(function(){
            HideSelect();
        },2000);
    //////////////////////////////////////////////////////////////////////////////////////////////
});
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
14-05-18 조회 5,316
14-05-17 조회 6,622
14-05-15 조회 4,494
14-05-15 조회 5,248
14-05-15 조회 3,636
14-05-13 조회 4,689
14-05-13 조회 7,265
14-05-13 조회 4,393
14-05-13 조회 4,756
14-05-13 조회 3,527
14-05-11 조회 3,572
14-05-11 조회 4,361
14-05-11 조회 4,454
14-05-11 조회 4,373
14-05-09 조회 5,189
14-05-09 조회 4,006
14-05-09 조회 6,173
14-05-09 조회 6,179
14-05-09 조회 4,610
14-05-09 조회 7,550
14-05-09 조회 1.2만
14-05-08 조회 5,558
14-05-08 조회 3,983
14-05-07 조회 6,241
14-05-05 조회 5,432
14-05-01 조회 4,751
14-04-30 조회 3,861
14-04-30 조회 7,054
14-04-29 조회 3,723
14-04-27 조회 3,995
14-04-27 조회 4,458
14-04-26 조회 4,656
14-04-25 조회 4,638
14-04-25 조회 7,483
14-04-22 조회 4,494
14-04-21 조회 3,584
14-04-21 조회 4,865
14-04-17 조회 4,469
14-04-16 조회 5,442
14-04-16 조회 3,578
14-04-16 조회 4,353
14-04-15 조회 4,318
14-04-15 조회 4,358
14-04-15 조회 4,015
14-04-14 조회 4,049
14-04-14 조회 4,014
14-04-14 조회 4,439
14-04-14 조회 4,479
14-04-14 조회 4,499
14-04-13 조회 4,354
14-04-13 조회 4,796
14-04-13 조회 4,039
14-04-12 조회 4,081
14-04-12 조회 4,100
14-04-12 조회 4,194
14-04-11 조회 4,701
14-04-10 조회 4,348
14-04-10 조회 4,338
14-04-10 조회 8,937
14-04-10 조회 4,376
14-04-10 조회 4,427
14-04-10 조회 4,458
14-04-09 조회 4,671
14-04-09 조회 5,009
14-04-08 조회 6,661
14-04-07 조회 5,026
14-04-06 조회 3,774
14-04-06 조회 3,549
14-04-06 조회 3,694
14-04-05 조회 3,773
14-04-05 조회 4,159
14-04-05 조회 1.8만
14-04-02 조회 4,270
14-04-02 조회 3,302
14-04-02 조회 3,331
14-04-02 조회 3,609
14-04-01 조회 5,960
14-03-31 조회 3,677
14-03-31 조회 3,448
14-03-30 조회 3,449
14-03-30 조회 3,291
14-03-30 조회 3,599
14-03-30 조회 4,302
14-03-29 조회 3,267
14-03-29 조회 3,668
14-03-29 조회 4,332
14-03-28 조회 3,192
14-03-28 조회 4,026
14-03-28 조회 3,403
14-03-27 조회 3,550
14-03-26 조회 4,030
14-03-26 조회 4,349
14-03-26 조회 3,253
14-03-26 조회 3,820
14-03-26 조회 3,177
14-03-25 조회 6,394
14-03-25 조회 3,802
14-03-25 조회 4,014
14-03-25 조회 3,741
14-03-25 조회 3,202