링크
<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>
혹시 상단에 있는 홈/로그인/로그아웃/회원가입-----------이 메뉴 인가요?
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 130 | 20년 전 | 3974 | ||
| 129 | 20년 전 | 2915 | ||
| 128 | 20년 전 | 3652 | ||
| 127 | 20년 전 | 3466 | ||
| 126 | 20년 전 | 3733 | ||
| 125 | 20년 전 | 8568 | ||
| 124 | 20년 전 | 2592 | ||
| 123 | 20년 전 | 3735 | ||
| 122 | 20년 전 | 3195 | ||
| 121 | 20년 전 | 2599 | ||
| 120 | 20년 전 | 2653 | ||
| 119 | 20년 전 | 2570 | ||
| 118 | 20년 전 | 2856 | ||
| 117 |
|
20년 전 | 3044 | |
| 116 | 20년 전 | 5292 | ||
| 115 | 20년 전 | 3901 | ||
| 114 | 20년 전 | 4952 | ||
| 113 | 20년 전 | 6198 | ||
| 112 | 20년 전 | 7317 | ||
| 111 | 20년 전 | 18424 | ||
| 110 | 20년 전 | 6868 | ||
| 109 | 20년 전 | 2869 | ||
| 108 | 20년 전 | 4128 | ||
| 107 |
prosper
|
20년 전 | 2481 | |
| 106 |
prosper
|
20년 전 | 4303 | |
| 105 |
아우겐나이스
|
20년 전 | 2898 | |
| 104 | 20년 전 | 2250 | ||
| 103 | 20년 전 | 2467 | ||
| 102 | 20년 전 | 2230 | ||
| 101 | 20년 전 | 2557 | ||
| 100 | 20년 전 | 1737 | ||
| 99 | 20년 전 | 1560 | ||
| 98 | 20년 전 | 1610 | ||
| 97 | 20년 전 | 2115 | ||
| 96 | 20년 전 | 1863 | ||
| 95 | 20년 전 | 2362 | ||
| 94 | 20년 전 | 3549 | ||
| 93 | 20년 전 | 1549 | ||
| 92 | 20년 전 | 1746 | ||
| 91 | 20년 전 | 3164 | ||
| 90 | 20년 전 | 2335 | ||
| 89 | 20년 전 | 3158 | ||
| 88 | 20년 전 | 2859 | ||
| 87 | 20년 전 | 3286 | ||
| 86 | 20년 전 | 5110 | ||
| 85 | 20년 전 | 2509 | ||
| 84 | 20년 전 | 4816 | ||
| 83 | 20년 전 | 2492 | ||
| 82 | 20년 전 | 3108 | ||
| 81 | 20년 전 | 7613 | ||
| 80 | 20년 전 | 3810 | ||
| 79 | 20년 전 | 3199 | ||
| 78 | 20년 전 | 4681 | ||
| 77 | 20년 전 | 2886 | ||
| 76 | 20년 전 | 6206 | ||
| 75 | 20년 전 | 4463 | ||
| 74 | 20년 전 | 5772 | ||
| 73 | 20년 전 | 3617 | ||
| 72 | 20년 전 | 5958 | ||
| 71 | 20년 전 | 3100 | ||
| 70 | 20년 전 | 2828 | ||
| 69 | 20년 전 | 2624 | ||
| 68 | 20년 전 | 2435 | ||
| 67 | 20년 전 | 2642 | ||
| 66 | 20년 전 | 2660 | ||
| 65 | 20년 전 | 3780 | ||
| 64 | 20년 전 | 2815 | ||
| 63 | 20년 전 | 2447 | ||
| 62 | 20년 전 | 2252 | ||
| 61 | 20년 전 | 3055 | ||
| 60 | 20년 전 | 3123 | ||
| 59 | 20년 전 | 2502 | ||
| 58 | 20년 전 | 2585 | ||
| 57 | 20년 전 | 2955 | ||
| 56 | 20년 전 | 2303 | ||
| 55 | 20년 전 | 2746 | ||
| 54 | 20년 전 | 2114 | ||
| 53 | 20년 전 | 2339 | ||
| 52 | 20년 전 | 2686 | ||
| 51 |
prosper
|
20년 전 | 2339 | |
| 50 |
prosper
|
20년 전 | 2157 | |
| 49 | 21년 전 | 2169 | ||
| 48 | 21년 전 | 2319 | ||
| 47 | 21년 전 | 1918 | ||
| 46 | 21년 전 | 1918 | ||
| 45 | 21년 전 | 2124 | ||
| 44 | 21년 전 | 2350 | ||
| 43 | 21년 전 | 4565 | ||
| 42 |
prosper
|
21년 전 | 2704 | |
| 41 |
prosper
|
21년 전 | 2107 | |
| 40 | 21년 전 | 2172 | ||
| 39 | 21년 전 | 2138 | ||
| 38 | 21년 전 | 2406 | ||
| 37 | 21년 전 | 2553 | ||
| 36 | 21년 전 | 1766 | ||
| 35 | 21년 전 | 4063 | ||
| 34 | 21년 전 | 3841 | ||
| 33 | 21년 전 | 2982 | ||
| 32 |
prosper
|
21년 전 | 2894 | |
| 31 | 21년 전 | 5264 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기