아래 소스는 제가 퍼블리싱 하면서 만들었던 레이어 셀렉트 박스 소스인데요.
제이쿼리를 이용해서 아주 간단하게 만든것이에요.
기능적으로 조금만 더 추가하면 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);
//////////////////////////////////////////////////////////////////////////////////////////////
});
제이쿼리를 이용해서 아주 간단하게 만든것이에요.
기능적으로 조금만 더 추가하면 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);
//////////////////////////////////////////////////////////////////////////////////////////////
});
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 356 | ||
| 8029 | 9년 전 | 291 | ||
| 8028 | 9년 전 | 255 | ||
| 8027 | 9년 전 | 268 | ||
| 8026 | 9년 전 | 320 | ||
| 8025 | 9년 전 | 371 | ||
| 8024 | 9년 전 | 336 | ||
| 8023 | 9년 전 | 383 | ||
| 8022 | 9년 전 | 311 | ||
| 8021 | 9년 전 | 321 | ||
| 8020 | 9년 전 | 311 | ||
| 8019 | 9년 전 | 334 | ||
| 8018 | 9년 전 | 440 | ||
| 8017 | 9년 전 | 532 | ||
| 8016 | 9년 전 | 320 | ||
| 8015 | 9년 전 | 382 | ||
| 8014 | 9년 전 | 317 | ||
| 8013 | 9년 전 | 229 | ||
| 8012 | 9년 전 | 238 | ||
| 8011 | 9년 전 | 438 | ||
| 8010 | 9년 전 | 292 | ||
| 8009 | 9년 전 | 275 | ||
| 8008 | 9년 전 | 279 | ||
| 8007 | 9년 전 | 421 | ||
| 8006 | 9년 전 | 457 | ||
| 8005 |
|
9년 전 | 960 | |
| 8004 | 9년 전 | 345 | ||
| 8003 | 9년 전 | 413 | ||
| 8002 | 9년 전 | 320 | ||
| 8001 |
|
9년 전 | 663 | |
| 8000 | 9년 전 | 409 | ||
| 7999 | 9년 전 | 367 | ||
| 7998 | 9년 전 | 419 | ||
| 7997 | 9년 전 | 304 | ||
| 7996 | 9년 전 | 530 | ||
| 7995 | 9년 전 | 448 | ||
| 7994 | 9년 전 | 317 | ||
| 7993 | 9년 전 | 378 | ||
| 7992 | 9년 전 | 502 | ||
| 7991 | 9년 전 | 244 | ||
| 7990 | 9년 전 | 266 | ||
| 7989 | 9년 전 | 295 | ||
| 7988 | 9년 전 | 720 | ||
| 7987 | 9년 전 | 415 | ||
| 7986 | 9년 전 | 406 | ||
| 7985 | 9년 전 | 504 | ||
| 7984 | 9년 전 | 425 | ||
| 7983 | 9년 전 | 652 | ||
| 7982 | 9년 전 | 505 | ||
| 7981 | 9년 전 | 459 | ||
| 7980 | 9년 전 | 485 | ||
| 7979 | 9년 전 | 455 | ||
| 7978 | 9년 전 | 437 | ||
| 7977 | 9년 전 | 377 | ||
| 7976 | 9년 전 | 844 | ||
| 7975 | 9년 전 | 355 | ||
| 7974 | 9년 전 | 385 | ||
| 7973 | 9년 전 | 587 | ||
| 7972 | 9년 전 | 373 | ||
| 7971 | 9년 전 | 451 | ||
| 7970 | 9년 전 | 286 | ||
| 7969 | 9년 전 | 535 | ||
| 7968 | 9년 전 | 376 | ||
| 7967 | 9년 전 | 360 | ||
| 7966 | 9년 전 | 363 | ||
| 7965 |
|
9년 전 | 1007 | |
| 7964 | 9년 전 | 394 | ||
| 7963 | 9년 전 | 384 | ||
| 7962 | 9년 전 | 364 | ||
| 7961 |
전갈자리남자
|
9년 전 | 502 | |
| 7960 | 9년 전 | 955 | ||
| 7959 | 9년 전 | 546 | ||
| 7958 | 9년 전 | 400 | ||
| 7957 | 9년 전 | 361 | ||
| 7956 | 9년 전 | 365 | ||
| 7955 | 9년 전 | 440 | ||
| 7954 | 9년 전 | 366 | ||
| 7953 | 9년 전 | 420 | ||
| 7952 | 9년 전 | 346 | ||
| 7951 | 9년 전 | 494 | ||
| 7950 | 9년 전 | 381 | ||
| 7949 | 9년 전 | 381 | ||
| 7948 | 9년 전 | 320 | ||
| 7947 | 9년 전 | 925 | ||
| 7946 | 9년 전 | 420 | ||
| 7945 | 9년 전 | 386 | ||
| 7944 | 9년 전 | 408 | ||
| 7943 | 9년 전 | 364 | ||
| 7942 | 9년 전 | 400 | ||
| 7941 | 9년 전 | 382 | ||
| 7940 | 9년 전 | 871 | ||
| 7939 | 9년 전 | 346 | ||
| 7938 | 9년 전 | 373 | ||
| 7937 | 9년 전 | 272 | ||
| 7936 | 9년 전 | 875 | ||
| 7935 | 9년 전 | 438 | ||
| 7934 | 9년 전 | 404 | ||
| 7933 | 9년 전 | 499 | ||
| 7932 | 9년 전 | 464 | ||
| 7931 | 9년 전 | 523 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기