모바일 첫 화면 구성
페이지 정보
작성자 서방님 댓글 0건 조회 121회 작성일 15-07-09 11:56본문
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery Mobile Web App</title>
<link href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" rel="stylesheet" type="text/css"/>
<script src="http://code.jquery.com/jquery-1.5.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js" type="text/javascript"></script>
</head>
<body>
<!--메인페이지-->
<div data-role="page" id="page">
<div data-role="header">
<h1>Page one</h1>
</div>
<div data-role="content">
<ul data-role="listview">
<li><a href="#page2">소개</a></li>
<li><a href="#page3">공지사항</a></li>
<li><a href="#page4">포트폴리오</a></li>
<li><a href="#page5">한마디남기기</a></li>
</ul>
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!--소개-->
<div data-role="page" id="page2">
<div data-role="header">
<h1>Page Two</h1>
</div>
<div data-role="content">
Content
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!--공지사항(리스트)-->
<div data-role="page" id="page3">
<div data-role="header">
<h1>Page Three</h1>
</div>
<div data-role="content">
Content
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!--공지사항(보기)-->
<div data-role="page" id="page3_1">
<div data-role="header">
<h1>Page Three</h1>
</div>
<div data-role="content">
Content
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!--포트폴리오-->
<div data-role="page" id="page4">
<div data-role="header">
<h1>Page Four</h1>
</div>
<div data-role="content">
Content
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<!--한마디남기기-->
<div data-role="page" id="pag54">
<div data-role="header">
<h1>Page Four</h1>
</div>
<div data-role="content">
Content
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
</body>
</html>
댓글목록
등록된 댓글이 없습니다.