일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 홈페이지
- 웹개발자
- 3D프린터
- work6.kr
- 커스터마이징
- 웹에이전시
- PHP
- 튜닝
- 개발자
- 안드로이드
- 포트폴리오
- 워크식스
- 제이쿼리
- 프로그래머
- 홈페이지구축
- 웹퍼블리싱
- 쇼핑몰제작
- 쇼핑몰
- 홈페이지제작
- 웹퍼블리셔
- plugin
- 사이트제작
- 고도몰
- 웹디자이너
- CSS
- JQuery
- 웹디자인
- 플러그인
- 쇼핑몰구축
- jQuery Plugin
- Today
- Total
그냥 개발자 블로그
모바일용 회전메뉴 제이쿼리(jquery) 플러그인 본문
모바일웹은 화면이 좁아서 많은 메뉴를 넣기 애매할때가 자주 있죠.
그럴때 사용하면 좋은것이 회전메뉴인데요.
회전메뉴가 뭐냐구요? 아래 영상을 한번 보실게요.
이게 회전 메뉴에요.
회전메뉴를 통해서 좁은공간에도 많은 메뉴를 사용할수 있다는게 장점이죠.
그러나 구현이 복잡하다는게 단점인데요.
회전메뉴 단점을 극복하고자 제이쿼리(jquery) 플러그인을 만들었어요.
예제를 통해서 사용법을 살펴보면....
<style> #button{width:40px; height:40px; border-radius:20px; position:absolute; right:5px; top:100px; color:#fff; line-height:40px; text-align:center; background:#ccc;} #rotatemenu{position:absolute; width:240px; height:240px; right:-95px; display:block; opacity:0;} #rotatemenu .rmlist{position:absolute; width:40px; height:40px; border-radius:20px; color:#fff; line-height:40px; text-align:center;} #rotatemenu .rmlist a{font-size:14px; color:#fff;} </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="rotatemenu.js"></script> <script> $(function(){ $('#roatatemenu').rotatemenu({ button:'#button', angelspeed:700 }); }); </script> <body> <div id="rotatemenu"> <div class="rmlist" style="background:red; left:100px; top:5px;"><a href="#">1</a></div> <div class="rmlist" style="background:green; left:100px; bottom:5px;"><a href="#">5</a></div> <div class="rmlist" style="background:red; right:5px; top:100px;"><a href="#">3</a></div> <div class="rmlist" style="background:green; left:5px; top:100px;"><a href="#">7</a></div> <div class="rmlist" style="background:red; left:35px; top:35px;"><a href="#">8</a></div> <div class="rmlist" style="background:green; right:35px; top:35px;"><a href="#">2</a></div> <div class="rmlist" style="background:red; left:35px; bottom:35px;"><a href="#">6</a></div> <div class="rmlist" style="background:green; left:35px; bottom:35px;"><a href="#">4</a></div> </div> <div id="button">Menu</div> </body>
|
우선 태그를 이렇게 작성해주었어요.
다른때 제이쿼리(jquery) 관련 포스팅보다 태그가 많은데요.
원형을 만들어야 하다보니 어쩔수 없었네요.
id적힌곳이 두개가 보이는데 는 원하는대로 적어주시면 되요.
단, rmlist는 필수 클래스명로 변경되어선 안되요.
<style> #button{width:40px; height:40px; border-radius:20px; position:absolute; right:5px; top:100px; color:#fff; line-height:40px; text-align:center; background:#ccc;} #rotatemenu{position:absolute; width:240px; height:240px; right:-95px; display:block; opacity:0;} #rotatemenu .rmlist{position:absolute; width:40px; height:40px; border-radius:20px; color:#fff; line-height:40px; text-align:center;} #rotatemenu .rmlist a{font-size:14px; color:#fff;} </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="rotatemenu.js"></script> <script> $(function(){ $('#roatatemenu').rotatemenu({ button:'#button', angelspeed:700 }); }); </script> <body> <div id="rotatemenu"> <div class="rmlist" style="background:red; left:100px; top:5px;"><a href="#">1</a></div> <div class="rmlist" style="background:green; left:100px; bottom:5px;"><a href="#">5</a></div> <div class="rmlist" style="background:red; right:5px; top:100px;"><a href="#">3</a></div> <div class="rmlist" style="background:green; left:5px; top:100px;"><a href="#">7</a></div> <div class="rmlist" style="background:red; left:35px; top:35px;"><a href="#">8</a></div> <div class="rmlist" style="background:green; right:35px; top:35px;"><a href="#">2</a></div> <div class="rmlist" style="background:red; left:35px; bottom:35px;"><a href="#">6</a></div> <div class="rmlist" style="background:green; left:35px; bottom:35px;"><a href="#">4</a></div> </div> <div id="button">Menu</div> </body>
|
회전메뉴 제이쿼리(jquery) 플러그인 예제 태그도 어마어마 한데 필수는 딱히 없어요.
입맛대로 작성해주시면 되요.
아! 회전메뉴에 가장 밖은 opacity가 0 이되어야 겠네요.
<style> #button{width:40px; height:40px; border-radius:20px; position:absolute; right:5px; top:100px; color:#fff; line-height:40px; text-align:center; background:#ccc;} #rotatemenu{position:absolute; width:240px; height:240px; right:-95px; display:block; opacity:0;} #rotatemenu .rmlist{position:absolute; width:40px; height:40px; border-radius:20px; color:#fff; line-height:40px; text-align:center;} #rotatemenu .rmlist a{font-size:14px; color:#fff;} </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="rotatemenu.js"></script> <script> $(function(){ $('#roatatemenu').rotatemenu({ button:'#button', angelspeed:700 }); }); </script> <body> <div id="rotatemenu"> <div class="rmlist" style="background:red; left:100px; top:5px;"><a href="#">1</a></div> <div class="rmlist" style="background:green; left:100px; bottom:5px;"><a href="#">5</a></div> <div class="rmlist" style="background:red; right:5px; top:100px;"><a href="#">3</a></div> <div class="rmlist" style="background:green; left:5px; top:100px;"><a href="#">7</a></div> <div class="rmlist" style="background:red; left:35px; top:35px;"><a href="#">8</a></div> <div class="rmlist" style="background:green; right:35px; top:35px;"><a href="#">2</a></div> <div class="rmlist" style="background:red; left:35px; bottom:35px;"><a href="#">6</a></div> <div class="rmlist" style="background:green; left:35px; bottom:35px;"><a href="#">4</a></div> </div> <div id="button">Menu</div> </body>
|
제이쿼리(jquery) 플러그인을 연결해주고요.
<style> #button{width:40px; height:40px; border-radius:20px; position:absolute; right:5px; top:100px; color:#fff; line-height:40px; text-align:center; background:#ccc;} #rotatemenu{position:absolute; width:240px; height:240px; right:-95px; display:block; opacity:0;} #rotatemenu .rmlist{position:absolute; width:40px; height:40px; border-radius:20px; color:#fff; line-height:40px; text-align:center;} #rotatemenu .rmlist a{font-size:14px; color:#fff;} </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="rotatemenu.js"></script> <script> $(function(){ $('#roatatemenu').rotatemenu({ button:'#button', angelspeed:700 }); }); </script> <body> <div id="rotatemenu"> <div class="rmlist" style="background:red; left:100px; top:5px;"><a href="#">1</a></div> <div class="rmlist" style="background:green; left:100px; bottom:5px;"><a href="#">5</a></div> <div class="rmlist" style="background:red; right:5px; top:100px;"><a href="#">3</a></div> <div class="rmlist" style="background:green; left:5px; top:100px;"><a href="#">7</a></div> <div class="rmlist" style="background:red; left:35px; top:35px;"><a href="#">8</a></div> <div class="rmlist" style="background:green; right:35px; top:35px;"><a href="#">2</a></div> <div class="rmlist" style="background:red; left:35px; bottom:35px;"><a href="#">6</a></div> <div class="rmlist" style="background:green; left:35px; bottom:35px;"><a href="#">4</a></div> </div> <div id="button">Menu</div> </body>
|
위와 같이 작성해주시면 되요.
옵션에 대한 설명은 아래를 참고하세요.
button : 스타트 버튼의 아이디 또는 클래스, 예제 영상과 같이 처음에 회전메뉴를 불러오는 버튼 역할을 해요.
회전메뉴 제이쿼리(jquery) 플러그인은 홈페이지에서
rotatemenu.js 를 다운로드 받아서 사용하실수 있어요~!
'소식 > 플러그인소식' 카테고리의 다른 글
모바일웹에서 싸인을 받을수 있을까? 제이쿼리(jquery) (1) | 2015.09.21 |
---|---|
드래그앤드롭 제이쿼리(jquery) 플러그인 (0) | 2015.09.21 |
공지용 레이어팝업 간단 구현 제이쿼리(jquery) 플러그인 (0) | 2015.09.21 |
모바일웹에서 숨김메뉴 구현 제이쿼리(jquery) 플러그인 (0) | 2015.09.21 |
sns공유하기 추가 제이쿼리 플러그인 (2) | 2015.09.21 |