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

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

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

기능적으로 조금만 더 추가하면 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건
+
제목 글쓴이 날짜 조회
16-07-13 조회 2,054
16-07-12 조회 2,185
16-07-12 조회 2,207
16-07-11 조회 2,096
16-06-05 조회 2,649
16-06-03 조회 2,746
16-05-26 조회 2,708
15-09-22 조회 4,836
15-06-10 조회 4,593
14-10-25 조회 6,040
14-10-22 조회 8,792
14-09-21 조회 5,595
14-09-16 조회 4,897
14-08-22 조회 1만
14-08-13 조회 5,727
14-08-12 조회 5,264
14-08-12 조회 6,144
14-08-11 조회 6,641
14-06-12 조회 5,982
14-06-11 조회 4,830
14-05-09 조회 5,218
14-05-09 조회 6,196
14-05-09 조회 6,196
14-05-08 조회 5,565
14-04-17 조회 4,499
14-04-16 조회 4,377
14-04-15 조회 4,344
14-04-15 조회 4,393
14-04-15 조회 4,029
14-04-14 조회 4,073
14-04-14 조회 4,046
14-04-14 조회 4,466
14-04-14 조회 4,495
14-04-14 조회 4,516
14-04-13 조회 4,371
14-04-12 조회 4,095
14-04-12 조회 4,128
14-04-12 조회 4,224
14-04-11 조회 4,728
14-04-10 조회 4,441
14-04-10 조회 4,471
14-04-09 조회 4,703
14-04-09 조회 5,040
14-04-08 조회 6,672
13-10-30 조회 7,470
13-07-11 조회 4,978
13-03-28 조회 1.1만
13-02-27 조회 6,519
13-02-14 조회 5,397
13-01-10 조회 4,395
12-12-31 조회 4,918
12-12-20 조회 6,022
12-12-12 조회 5,160
12-12-07 조회 4,333
12-11-28 조회 4,656
12-11-22 조회 5,105
12-11-12 조회 5,413
12-09-22 조회 4,421
12-09-18 조회 4,610