링크
<t (228)| 메뉴1 | 메뉴2 | 메뉴3 |
이런경우의 소스는 참 많지요.. jquery ui만 둘러봐도 이것저것 많은데.. 만약에
| 메뉴1 | 메뉴2 | 메뉴3 | 메뉴4 |
위와 같은 형식으로 100%를 주려면.. px계산하느라 애좀 먹겠지요.. 1px정도 차이가 자꾸날겁니다. 그래서 편하게 테이블로 맹구러버렸습니다..
/*탭메뉴관련 CSS*/
.tab_menu { text-align:center; padding:3px 2px;}
.tab_menu_first_on {
border:1px solid #cccccc;
border-bottom:none;
background-color:#ffffff;
cursor:normal;
}
.tab_menu_first_off {
border:1px solid #cccccc;
background-color:#f1f1f1;
cursor:pointer;
}
.tab_menu_other_on {
border-top :1px solid #cccccc;
border-right:1px solid #cccccc;
background-color:#ffffff;
cursor:normal;
}
.tab_menu_other_off {
border:1px solid #cccccc;
border-left:none;
background-color:#f1f1f1;
cursor:pointer;
}
.tab_content { border:1px solid #cccccc; border-top:none;}
.tab_content_on {display:block;}
.tab_content_off {display:none;}
.tab_button_more {clear:both; padding-top:5px; text-align:right;}
/*탭메뉴관련 script*/
$(document).ready(function(){
$(".tab_menu").click(function(){
var now_menu = $(this).attr('id');
var now_cont = now_menu.replace('tab_menu_','tab_cont_');
var id = now_menu.substring(0, now_menu.length - 3);
var idx = $('#'+id).find('.tab_menu').index(this);
if(idx == 0){
$('#'+id).find('.tab_menu:gt(0)').removeClass('tab_menu_other_on').addClass('tab_menu_other_off');
$('#'+id).find('.tab_menu:eq(0)').removeClass('tab_menu_first_off').addClass('tab_menu_first_on');
} else {
$('#'+id).find('.tab_menu:eq(0)').removeClass('tab_menu_first_on').addClass('tab_menu_first_off');
$('#'+id).find('.tab_menu:gt(0)').removeClass('tab_menu_other_on').addClass('tab_menu_other_off');
$('#'+now_menu).removeClass('tab_menu_other_off').addClass('tab_menu_other_on');
}
$('#'+id).find('.tab_content').removeClass('tab_content_on').addClass('tab_content_off');
$('#'+now_cont).removeClass('tab_content_off').addClass('tab_content_on');
});
});
/*
탭메뉴관련 html 앞의 test를 다른걸로 바꾸시면 되며
tab1_tab_menu, tab2_tab_menu등으로 여러개를 동시에 사용가능합니다.
또 중요한건 큰테이블의 아이디는 'xxxxxx_tab_menu'
탭메뉴들의 아이디는 'xxxxxx_tab_menu_01~99' 01~99는 영문이든 숫자든 상관없으며 2자리로 구성해주세요..
탭내용들의 아이디는 'xxxxxx_tab_cont_01~99' 01~99는 영문이든 숫자든 상관없으며 2자리로 구성해주세요.. 단 맵메뉴의 아이디 끝 두자리와 일치해야합니다.
*/
<table border=0 width=100% cellpadding=0 cellspacing=0 id='test_tab_menu'>
<tr>
<td width=25% id='test_tab_menu_01' class='tab_menu tab_menu_first_on'>내용1</td>
<td width=25% id='test_tab_menu_02' class='tab_menu tab_menu_other_off'>내용2</td>
<td width=25% id='test_tab_menu_03' class='tab_menu tab_menu_other_off'>내용3</td>
<td width=25% id='test_tab_menu_04' class='tab_menu tab_menu_other_off'>내용4</td>
</tr>
<tr>
<td colspan=4>
<table border=0 width=100% cellpadding=0 cellspacing=0 id='test_tab_cont_01' class='tab_content tab_content_on'>
<tr>
<td style='padding:10px 5px;'>내용1 내용1</td>
</tr>
</table>
<table border=0 width=100% cellpadding=0 cellspacing=0 id='test_tab_cont_02' class='tab_content tab_content_off'>
<tr>
<td style='padding:10px 5px;'>내용2 내용2</td>
</tr>
</table>
<table border=0 width=100% cellpadding=0 cellspacing=0 id='test_tab_cont_03' class='tab_content tab_content_off'>
<tr>
<td style='padding:10px 5px;'>내용2 내용3</td>
</tr>
</table>
<table border=0 width=100% cellpadding=0 cellspacing=0 id='test_tab_cont_04' class='tab_content tab_content_off'>
<tr>
<td style='padding:10px 5px;'>내용2 내용4</td>
</tr>
</table>
</td>
</tr>
</table>
혹시 div코딩으로 처리가능하신분은 올려주세요.. 하다하다 안되서
테이블 코딩해버린겁니다 ㅎㅎ;;
css코딩이 허접한지라.. ㅠ.ㅠ
댓글 4개
<style>
.tab_menu {float:left;}
</style>
<div id='test_tab_menu'>
<div id='test_tab_menu_01' class='tab_menu tab_menu_first_on'>내용1</div>
<div id='test_tab_menu_02' class='tab_menu tab_menu_first_off'>내용2</div>
<div id='test_tab_menu_03' class='tab_menu tab_menu_first_off'>내용3</div>
<div id='test_tab_menu_04' class='tab_menu tab_menu_first_off'>내용4</div>
<div>
혹시 상단에 있는 홈/로그인/로그아웃/회원가입-----------이 메뉴 인가요?
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7830 | 9년 전 | 369 | ||
| 7829 |
|
9년 전 | 547 | |
| 7828 | 9년 전 | 481 | ||
| 7827 | 9년 전 | 368 | ||
| 7826 | 9년 전 | 374 | ||
| 7825 | 9년 전 | 429 | ||
| 7824 | 9년 전 | 415 | ||
| 7823 | 9년 전 | 317 | ||
| 7822 | 9년 전 | 315 | ||
| 7821 | 9년 전 | 261 | ||
| 7820 | 9년 전 | 313 | ||
| 7819 |
|
9년 전 | 715 | |
| 7818 | 10년 전 | 334 | ||
| 7817 | 10년 전 | 447 | ||
| 7816 | 10년 전 | 353 | ||
| 7815 | 10년 전 | 553 | ||
| 7814 | 10년 전 | 377 | ||
| 7813 | 10년 전 | 312 | ||
| 7812 | 10년 전 | 341 | ||
| 7811 | 10년 전 | 359 | ||
| 7810 | 10년 전 | 486 | ||
| 7809 | 10년 전 | 430 | ||
| 7808 | 10년 전 | 283 | ||
| 7807 | 10년 전 | 349 | ||
| 7806 |
프로그래머7
|
10년 전 | 1302 | |
| 7805 | 10년 전 | 1211 | ||
| 7804 |
zahir1312
|
10년 전 | 740 | |
| 7803 |
|
10년 전 | 1340 | |
| 7802 | 10년 전 | 395 | ||
| 7801 | 10년 전 | 824 | ||
| 7800 | 10년 전 | 1036 | ||
| 7799 | 10년 전 | 497 | ||
| 7798 | 10년 전 | 444 | ||
| 7797 | 10년 전 | 444 | ||
| 7796 | 10년 전 | 298 | ||
| 7795 | 10년 전 | 450 | ||
| 7794 | 10년 전 | 473 | ||
| 7793 | 10년 전 | 991 | ||
| 7792 | 10년 전 | 398 | ||
| 7791 | 10년 전 | 479 | ||
| 7790 | 10년 전 | 448 | ||
| 7789 |
fbastore
|
10년 전 | 1387 | |
| 7788 | 10년 전 | 483 | ||
| 7787 | 10년 전 | 345 | ||
| 7786 | 10년 전 | 498 | ||
| 7785 | 10년 전 | 515 | ||
| 7784 | 10년 전 | 581 | ||
| 7783 | 10년 전 | 385 | ||
| 7782 | 10년 전 | 440 | ||
| 7781 | 10년 전 | 841 | ||
| 7780 | 10년 전 | 774 | ||
| 7779 | 10년 전 | 745 | ||
| 7778 | 10년 전 | 313 | ||
| 7777 | 10년 전 | 391 | ||
| 7776 | 10년 전 | 396 | ||
| 7775 | 10년 전 | 334 | ||
| 7774 | 10년 전 | 597 | ||
| 7773 | 10년 전 | 320 | ||
| 7772 | 10년 전 | 660 | ||
| 7771 | 10년 전 | 324 | ||
| 7770 | 10년 전 | 608 | ||
| 7769 | 10년 전 | 322 | ||
| 7768 | 10년 전 | 543 | ||
| 7767 | 10년 전 | 1115 | ||
| 7766 | 10년 전 | 439 | ||
| 7765 | 10년 전 | 466 | ||
| 7764 |
잘살아보자
|
10년 전 | 321 | |
| 7763 |
|
10년 전 | 1393 | |
| 7762 |
Tosea
|
10년 전 | 1016 | |
| 7761 | 10년 전 | 611 | ||
| 7760 |
잘살아보자
|
10년 전 | 589 | |
| 7759 |
잘살아보자
|
10년 전 | 404 | |
| 7758 |
잘살아보자
|
10년 전 | 524 | |
| 7757 | 10년 전 | 1174 | ||
| 7756 |
ITBANK
|
10년 전 | 1216 | |
| 7755 | 10년 전 | 1892 | ||
| 7754 | 10년 전 | 988 | ||
| 7753 | 10년 전 | 840 | ||
| 7752 | 10년 전 | 1340 | ||
| 7751 |
잘살아보자
|
10년 전 | 468 | |
| 7750 |
잘살아보자
|
10년 전 | 432 | |
| 7749 |
잘살아보자
|
10년 전 | 430 | |
| 7748 |
잘살아보자
|
10년 전 | 417 | |
| 7747 |
잘살아보자
|
10년 전 | 504 | |
| 7746 |
잘살아보자
|
10년 전 | 621 | |
| 7745 |
잘살아보자
|
10년 전 | 865 | |
| 7744 |
잘살아보자
|
10년 전 | 383 | |
| 7743 | 10년 전 | 911 | ||
| 7742 |
starbros
|
10년 전 | 782 | |
| 7741 |
잘살아보자
|
10년 전 | 593 | |
| 7740 |
잘살아보자
|
10년 전 | 472 | |
| 7739 |
잘살아보자
|
10년 전 | 430 | |
| 7738 |
잘살아보자
|
10년 전 | 484 | |
| 7737 |
잘살아보자
|
10년 전 | 438 | |
| 7736 |
잘살아보자
|
10년 전 | 463 | |
| 7735 |
잘살아보자
|
10년 전 | 800 | |
| 7734 |
잘살아보자
|
10년 전 | 388 | |
| 7733 |
잘살아보자
|
10년 전 | 489 | |
| 7732 |
잘살아보자
|
10년 전 | 640 | |
| 7731 |
잘살아보자
|
10년 전 | 567 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기