1. 앵커로 탭메뉴
html
1번탭내용
2번탭내용
3번탭내용
4번탭내용
css
ul,li{list-style:none} .tab{overflow:hidden} .tab li{float:left;width:33%;border:1px solid #fff} .tab li a{display:block;width:100%;height:50px;line-height:50px;background:pink;text-align:center} .con_wrap{position:relative;height:200px;border:1px solid red} .con_wrap .con{position:absolute;left:0;top:0} .con_wrap .con:nth-child(2){display:none} .con_wrap .con:nth-child(3){display:none} .con_wrap .con:nth-child(4){display:none}
js
$(function(){ $(".tab a").click(function(){ var tabType=$(this).attr('href'); $(tabType).show().siblings(".con").hide(); }) });
- click() 이벤트
클릭을 하면 이벤트를 발생
- attr() 메소드
attr(attribute) = attr(속성); - 속성의 값 가져오기
attr(attribute,value) = attr({속성:값, 속성:값}); - 대상의 속성을 값으로 설정
'Data > script/jQuery' 카테고리의 다른 글
롤링배너 ㅣ 롤링배너 // 이미지 개수에 따라 인디게이터 생성 (0) | 2015.10.13 |
---|---|
jQuery 탭메뉴 - 이미지 탭메뉴 / li 안에 div 구조로 (0) | 2015.08.28 |
jQuery 탭메뉴 - 이미지 탭메뉴 (0) | 2015.08.28 |
jQuery 탭메뉴 - 텍스트로된 탭메뉴 / 클레스 제어 (0) | 2015.08.26 |