링크
<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>
혹시 상단에 있는 홈/로그인/로그아웃/회원가입-----------이 메뉴 인가요?
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2330 | 16년 전 | 5069 | ||
| 2329 | 16년 전 | 2304 | ||
| 2328 | 16년 전 | 3404 | ||
| 2327 | 16년 전 | 2639 | ||
| 2326 | 16년 전 | 1557 | ||
| 2325 | 16년 전 | 5348 | ||
| 2324 | 16년 전 | 2467 | ||
| 2323 | 16년 전 | 5959 | ||
| 2322 | 16년 전 | 1937 | ||
| 2321 | 16년 전 | 4018 | ||
| 2320 | 16년 전 | 3029 | ||
| 2319 |
|
16년 전 | 2210 | |
| 2318 |
데니크레인
|
16년 전 | 2232 | |
| 2317 | 16년 전 | 4411 | ||
| 2316 | 16년 전 | 3292 | ||
| 2315 | 16년 전 | 2833 | ||
| 2314 | 16년 전 | 2960 | ||
| 2313 | 16년 전 | 2076 | ||
| 2312 | 16년 전 | 1764 | ||
| 2311 | 16년 전 | 1675 | ||
| 2310 | 16년 전 | 1396 | ||
| 2309 | 16년 전 | 1666 | ||
| 2308 | 16년 전 | 1902 | ||
| 2307 | 16년 전 | 1599 | ||
| 2306 |
|
16년 전 | 4848 | |
| 2305 | 16년 전 | 3826 | ||
| 2304 | 16년 전 | 1785 | ||
| 2303 | 16년 전 | 1532 | ||
| 2302 | 16년 전 | 2267 | ||
| 2301 | 16년 전 | 4529 | ||
| 2300 | 16년 전 | 3542 | ||
| 2299 | 16년 전 | 2575 | ||
| 2298 | 16년 전 | 4333 | ||
| 2297 | 16년 전 | 3206 | ||
| 2296 | 16년 전 | 1351 | ||
| 2295 |
|
16년 전 | 1377 | |
| 2294 |
|
16년 전 | 2038 | |
| 2293 | 16년 전 | 1885 | ||
| 2292 | 16년 전 | 2564 | ||
| 2291 | 16년 전 | 2232 | ||
| 2290 | 16년 전 | 1367 | ||
| 2289 | 16년 전 | 4391 | ||
| 2288 | 16년 전 | 1473 | ||
| 2287 | 16년 전 | 1780 | ||
| 2286 | 16년 전 | 2198 | ||
| 2285 |
|
16년 전 | 3833 | |
| 2284 |
|
16년 전 | 2729 | |
| 2283 |
|
16년 전 | 1483 | |
| 2282 | 16년 전 | 4011 | ||
| 2281 |
|
16년 전 | 1394 | |
| 2280 | 16년 전 | 1575 | ||
| 2279 | 16년 전 | 1234 | ||
| 2278 | 16년 전 | 1712 | ||
| 2277 | 16년 전 | 1611 | ||
| 2276 | 16년 전 | 1622 | ||
| 2275 | 16년 전 | 1423 | ||
| 2274 | 16년 전 | 2179 | ||
| 2273 | 16년 전 | 1818 | ||
| 2272 |
|
16년 전 | 1961 | |
| 2271 | 16년 전 | 2177 | ||
| 2270 |
a1system
|
16년 전 | 1471 | |
| 2269 | 16년 전 | 2304 | ||
| 2268 | 16년 전 | 2258 | ||
| 2267 | 16년 전 | 4530 | ||
| 2266 |
|
16년 전 | 1295 | |
| 2265 | 16년 전 | 1050 | ||
| 2264 |
잠자리똥꾸멍
|
16년 전 | 2009 | |
| 2263 |
태양의서쪽
|
16년 전 | 1972 | |
| 2262 |
태양의서쪽
|
16년 전 | 1515 | |
| 2261 |
태양의서쪽
|
16년 전 | 2040 | |
| 2260 |
|
16년 전 | 2269 | |
| 2259 | 16년 전 | 1385 | ||
| 2258 | 16년 전 | 1737 | ||
| 2257 | 16년 전 | 1921 | ||
| 2256 | 16년 전 | 1012 | ||
| 2255 | 16년 전 | 1689 | ||
| 2254 | 16년 전 | 1403 | ||
| 2253 | 16년 전 | 1910 | ||
| 2252 |
freedays
|
16년 전 | 1323 | |
| 2251 | 16년 전 | 2199 | ||
| 2250 | 16년 전 | 1879 | ||
| 2249 | 16년 전 | 5866 | ||
| 2248 | 16년 전 | 1912 | ||
| 2247 | 16년 전 | 3684 | ||
| 2246 | 16년 전 | 1466 | ||
| 2245 |
|
16년 전 | 1754 | |
| 2244 |
|
16년 전 | 2069 | |
| 2243 | 16년 전 | 2609 | ||
| 2242 | 16년 전 | 2306 | ||
| 2241 | 16년 전 | 2755 | ||
| 2240 | 16년 전 | 2990 | ||
| 2239 | 16년 전 | 3011 | ||
| 2238 |
|
16년 전 | 1820 | |
| 2237 |
|
16년 전 | 1540 | |
| 2236 |
|
16년 전 | 1413 | |
| 2235 | 16년 전 | 1724 | ||
| 2234 | 16년 전 | 1205 | ||
| 2233 | 16년 전 | 1959 | ||
| 2232 |
|
16년 전 | 1731 | |
| 2231 | 16년 전 | 1606 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기