Off Canvas 예제모음
Off Canvas Nav With Susy
http://www.zell-weekeat.com/labs/off-canvas/index.html
Off Canvas Menus with CSS3 Transitions and Transforms
https://scotch.io/tutorials/off-canvas-menus-with-css3-transitions-and-transforms
Off-canvas
http://foundation.zurb.com/docs/components/offcanvas.html
Bootstrap offcanvas snippets
http://www.bootply.com/tagged/offcanvas
어비의 오픈캔바스 예제
http://uhb.kr/book/wiki/rwd/templet/005.html
<!doctype html> | |
<html> | |
<head> | |
<meta charset="EUC-KR"> | |
<meta name="viewport"content="width=device-width, initial-scale=1.0"/> | |
` | <title>Off Canvas</title> |
<style> | |
* {margin:0; padding:0;} | |
#wrap {width:1000px; margin:0 auto;} | |
#wrap_box {width:100%; display:block;} | |
#box_a {height:400px; background:#fcb354; float:left; width:30%;} | |
#box_b {height:400px; background:#f1779e; width:40%; float:left;} | |
#box_c {height:400px; background:#24bbaf; width:30%; float:left;} | |
@media screen and (max-width:1024px) { | |
#wrap {width:100%;} | |
} | |
@media screen and (max-width:800px) { | |
#wrap_box { position:absolute; width:150%;} | |
#box_a {width:33.333%;} | |
#box_b {width:33.333%; float:left;} | |
#box_c {width:33.334%; float:left;} | |
} | |
@media screen and (max-width:480px) { | |
#wrap_box {width:300%; margin-left:-100%;} | |
} | |
</style> | |
</head> | |
<body> | |
<div id="wrap"> | |
<div id="wrap_box"> | |
<div id="box_a"></div> | |
<div id="box_b"></div> | |
<div id="box_c"></div> | |
</div> | |
</div> | |
</body> | |
</html> |
확장성을 고려한다면, 파운데이션에서 제공하고 있는 오프캔버스가 좋을듯한데,
부트스트랩이 왠지 익숙한 느낌ㅋㅋㅋ
반응형
'디자인' 카테고리의 다른 글
인디자인 멀티프레임에 이미지 불러오기 (0) | 2015.09.07 |
---|---|
부트스트랩 기본메뉴 오버드롭다운 메뉴로 변경하기 (0) | 2015.08.24 |
부트스트랩 수평중앙배치 (0) | 2015.08.07 |
구글 Noto Fonts (0) | 2015.08.05 |
부트스트랩 풀드롭다운 메뉴, 미디어쿼리 수정본 (0) | 2015.07.01 |