ヘッダー・フッター

デモ

こちらをデモを参照


サンプル

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<title>jQuery Mobileサンプル</title>
		<link rel="stylesheet" href="../css/jquery.mobile-1.1.1.css" />
		<script src="../js/jquery-1.7.1.min.js"></script>
		<script src="../js/jquery.mobile-1.1.1.min.js"></script>
	</head>
	<body>
		<section id="index" data-role="page" data-title="jQuery Mobile">
			<header data-role="header">
				<h1>jQuery Mobile</h1>
			</header>
			<div id ="index_content" data-role="content"> 
				<p>jQuery Mobileリファレンス</p>
				<p>
					<a href="#form" data-role="button">jQuery Mobile フォーム</a>
					<a href="#list" data-role="button">jQuery Mobile リスト</a>
				</p>
			</div>
			<footer data-role="footer"class="ui-bar"
				data-position="fixed" data-id="pers_footer">
				<a href="#" class="ui-btn-active ui-state-persist">トップ</a>
				<a href="#">FAQ</a>
				<a href="#">お問い合わせ</a>
			</footer>
		</section>
 
		<section id="form" data-role="page" data-title="jQuery Mobile フォーム"
			data-add-back-btn="true" data-back-btn-text="戻る" data-back-btn-theme="b">
			<header data-role="header">
				<h1>jQuery Mobile フォーム</h1>
			</header>
			<div id ="form_content" data-role="content"> 
				フォーム関連のリファレンス
			</div>
			<footer data-role="footer"class="ui-bar"
				data-position="fixed" data-id="pers_footer">
				<a href="#" class="ui-btn-active ui-state-persist">トップ</a>
				<a href="#">FAQ</a>
				<a href="#">お問い合わせ</a>
			</footer>
		</section>
 
		<section id="list" data-role="page" data-title="jQuery Mobile リスト"
			data-add-back-btn="true" data-back-btn-text="戻る" data-back-btn-theme="b">
			<header data-role="header">
				<h1>jQuery Mobile リスト</h1>
			</header>
			<div id ="list_content" data-role="content"> 
				リスト関連のリファレンス
			</div>
			<footer data-role="footer"class="ui-bar"
				data-position="fixed" data-id="pers_footer">
				<a href="#" class="ui-btn-active ui-state-persist">トップ</a>
				<a href="#">FAQ</a>
				<a href="#">お問い合わせ</a>
			</footer>
		</section>
	</body>
</html>
 
 




最終更新:2013年05月23日 19:37