링크
<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>
혹시 상단에 있는 홈/로그인/로그아웃/회원가입-----------이 메뉴 인가요?
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 430 | 19년 전 | 4121 | ||
| 429 | 19년 전 | 3316 | ||
| 428 | 19년 전 | 4139 | ||
| 427 | 19년 전 | 3487 | ||
| 426 | 19년 전 | 3110 | ||
| 425 | 19년 전 | 3422 | ||
| 424 | 19년 전 | 2446 | ||
| 423 | 19년 전 | 2870 | ||
| 422 | 19년 전 | 2360 | ||
| 421 | 19년 전 | 3713 | ||
| 420 | 19년 전 | 4750 | ||
| 419 | 19년 전 | 3820 | ||
| 418 |
|
19년 전 | 1758 | |
| 417 | 19년 전 | 2761 | ||
| 416 | 19년 전 | 2402 | ||
| 415 | 19년 전 | 2612 | ||
| 414 | 19년 전 | 4425 | ||
| 413 |
|
19년 전 | 2617 | |
| 412 | 19년 전 | 3061 | ||
| 411 |
|
19년 전 | 2999 | |
| 410 |
|
19년 전 | 3703 | |
| 409 |
|
19년 전 | 3650 | |
| 408 |
|
19년 전 | 1867 | |
| 407 | 19년 전 | 2240 | ||
| 406 | 19년 전 | 2801 | ||
| 405 | 19년 전 | 2472 | ||
| 404 | 19년 전 | 4321 | ||
| 403 | 19년 전 | 3309 | ||
| 402 |
NeoGenesis
|
19년 전 | 4107 | |
| 401 | 19년 전 | 2615 | ||
| 400 |
|
19년 전 | 2508 | |
| 399 | 19년 전 | 2970 | ||
| 398 | 19년 전 | 2503 | ||
| 397 | 19년 전 | 2796 | ||
| 396 | 19년 전 | 2499 | ||
| 395 | 19년 전 | 3204 | ||
| 394 | 19년 전 | 1743 | ||
| 393 | 19년 전 | 3004 | ||
| 392 | 19년 전 | 2281 | ||
| 391 | 19년 전 | 2187 | ||
| 390 | 19년 전 | 2297 | ||
| 389 | 19년 전 | 2655 | ||
| 388 | 19년 전 | 2199 | ||
| 387 | 19년 전 | 4491 | ||
| 386 |
|
19년 전 | 2697 | |
| 385 |
|
19년 전 | 2504 | |
| 384 | 19년 전 | 3036 | ||
| 383 | 19년 전 | 3068 | ||
| 382 | 19년 전 | 3122 | ||
| 381 |
|
19년 전 | 2646 | |
| 380 |
|
19년 전 | 3030 | |
| 379 | 19년 전 | 2555 | ||
| 378 | 19년 전 | 2222 | ||
| 377 | 19년 전 | 2788 | ||
| 376 | 19년 전 | 2476 | ||
| 375 |
|
19년 전 | 2571 | |
| 374 | 19년 전 | 3830 | ||
| 373 | 19년 전 | 3284 | ||
| 372 | 19년 전 | 5003 | ||
| 371 |
세은아빠2
|
19년 전 | 2423 | |
| 370 | 19년 전 | 4507 | ||
| 369 | 19년 전 | 3117 | ||
| 368 | 19년 전 | 2918 | ||
| 367 | 19년 전 | 3743 | ||
| 366 | 19년 전 | 2668 | ||
| 365 | 19년 전 | 3754 | ||
| 364 | 19년 전 | 4025 | ||
| 363 | 19년 전 | 3459 | ||
| 362 | 19년 전 | 3496 | ||
| 361 | 19년 전 | 4117 | ||
| 360 |
hwatta
|
19년 전 | 2376 | |
| 359 | 19년 전 | 5119 | ||
| 358 | 19년 전 | 3667 | ||
| 357 | 19년 전 | 2612 | ||
| 356 |
sdesign1s
|
20년 전 | 2293 | |
| 355 | 20년 전 | 2771 | ||
| 354 | 20년 전 | 3035 | ||
| 353 | 20년 전 | 2804 | ||
| 352 |
|
20년 전 | 5784 | |
| 351 |
|
20년 전 | 2719 | |
| 350 |
|
20년 전 | 4306 | |
| 349 |
hwatta
|
20년 전 | 2194 | |
| 348 | 20년 전 | 7315 | ||
| 347 | 20년 전 | 2422 | ||
| 346 | 20년 전 | 3516 | ||
| 345 | 20년 전 | 4323 | ||
| 344 | 20년 전 | 2660 | ||
| 343 | 20년 전 | 3930 | ||
| 342 | 20년 전 | 3080 | ||
| 341 | 20년 전 | 4108 | ||
| 340 |
|
20년 전 | 5160 | |
| 339 |
|
20년 전 | 4246 | |
| 338 | 20년 전 | 5893 | ||
| 337 | 20년 전 | 2053 | ||
| 336 |
|
20년 전 | 3342 | |
| 335 |
|
20년 전 | 3559 | |
| 334 |
|
20년 전 | 2953 | |
| 333 |
hwatta
|
20년 전 | 2456 | |
| 332 | 20년 전 | 4666 | ||
| 331 | 20년 전 | 2290 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기