탭메뉴

링크

<t (229)
보통의 경우 탭메뉴는 li 를 사용해 float:left 혹은 float:right; 를 사용해 아래와 같은 형식으로 표현하죠
메뉴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코딩이 허접한지라.. ㅠ.ㅠ

[이 게시물은 관리자님에 의해 2011-10-31 16:55:28 jQuery에서 이동 됨]
|

댓글 4개

float:left로 쭉 정렬해서 하면 안 될까요?ㅎㅎ


<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>
탭메뉴가 뭔가요?

혹시 상단에 있는 홈/로그인/로그아웃/회원가입-----------이 메뉴 인가요?
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
16년 전 조회 2,167
16년 전 조회 2,668
16년 전 조회 1,749
16년 전 조회 2,679
16년 전 조회 2,000
16년 전 조회 2,132
16년 전 조회 1,770
16년 전 조회 2,472
16년 전 조회 1,797
16년 전 조회 2,213
16년 전 조회 2,374
16년 전 조회 1,467
16년 전 조회 1,535
16년 전 조회 2,187
16년 전 조회 5,602
16년 전 조회 1,905
16년 전 조회 2,430
16년 전 조회 2,624
16년 전 조회 1,783
16년 전 조회 1,567
16년 전 조회 2,487
16년 전 조회 5,201
16년 전 조회 2,477
16년 전 조회 3,147
16년 전 조회 2,006
16년 전 조회 3,872
16년 전 조회 4,712
16년 전 조회 3,359
16년 전 조회 2,599
16년 전 조회 2,691
16년 전 조회 2,939
16년 전 조회 2,442
16년 전 조회 5,829
16년 전 조회 3,635
16년 전 조회 1,626
16년 전 조회 1,962
16년 전 조회 5,329
16년 전 조회 2,590
16년 전 조회 3,659
16년 전 조회 2,945
16년 전 조회 1,813
16년 전 조회 5,658
16년 전 조회 2,768
16년 전 조회 6,229
16년 전 조회 2,200
16년 전 조회 4,264
16년 전 조회 3,290
16년 전 조회 2,479
16년 전 조회 2,482
16년 전 조회 4,655
16년 전 조회 3,545
16년 전 조회 3,077
16년 전 조회 3,224
16년 전 조회 2,343
16년 전 조회 2,014
16년 전 조회 1,935
16년 전 조회 1,639
16년 전 조회 1,939
16년 전 조회 2,154
16년 전 조회 1,850
16년 전 조회 5,086
16년 전 조회 4,115
16년 전 조회 2,034
16년 전 조회 1,796
16년 전 조회 2,517
16년 전 조회 4,810
16년 전 조회 3,788
16년 전 조회 2,832
16년 전 조회 4,567
16년 전 조회 3,436
16년 전 조회 1,600
16년 전 조회 1,621
16년 전 조회 2,282
16년 전 조회 2,129
16년 전 조회 2,863
16년 전 조회 2,465
16년 전 조회 1,599
16년 전 조회 4,645
16년 전 조회 1,733
16년 전 조회 2,037
16년 전 조회 2,454
16년 전 조회 4,138
16년 전 조회 3,025
16년 전 조회 1,729
16년 전 조회 4,307
16년 전 조회 1,635
16년 전 조회 1,813
16년 전 조회 1,491
16년 전 조회 1,951
16년 전 조회 1,866
16년 전 조회 1,873
16년 전 조회 1,658
16년 전 조회 2,418
16년 전 조회 2,038
16년 전 조회 2,213
16년 전 조회 2,439
16년 전 조회 1,703
16년 전 조회 2,594
16년 전 조회 2,480
16년 전 조회 4,771