はじめてのjQuery Mobile

jQueryMobile Test

http://iphone4simulator.com/island-web.jp/air/lesson/smartphone/01/index.html

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQueryMobile Test</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css">
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.js"></script>
</head>
<body>
<div data-role="page">
	<div data-role="header">
		<h1>jQueryMobile Test</h1>
	</div>
	<div data-role="content">
  	<p>jQueryMobileを利用しています。</p>
  	<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
  	<li data-role="list-divider">メニュー</li>
  	<li><a href="#">メニュー1</a></li>
  	<li><a href="#">メニュー2</a></li>
  	<li><a href="#">メニュー3</a></li>
  	</ul>
  </div>
  <div data-role="footer">
  	<h2>フッター情報</h2>
  </div>
</div>
</body>
</html>

jQuery Mobile Sample

http://iphone4simulator.com/island-web.jp/air/lesson/smartphone/02/index.html

<!DOCTYPE html> 
<html lang="ja"> 
<head> 
<meta charset="UTF-8">
<title>jQuery Mobile Sample</title> 
<meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1, maximum-scale=1"> 
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css">
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.js"></script>
</head>
<body>
<div data-role="page" id="index" data-theme="b">
<div data-role="header" data-theme="b">
  <h1>jQuery Mobile</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="c">
	<li data-role="list-divider">Menu</li>
	<li><a href="#page">
		<h3>jQuery Mobile とは?</h3>
		<p>jQuery Mobileについて解説します</p>
		</a></li>
	<li><a href="#page">
		<h3>jQuery Mobileの基本</h3>
		<p>jQuery Mobileの使い方について解説します</p>
		</a></li>
	<li><a href="#page">
		<h3>jQuery Mobileのサンプル</h3>
		<p>jQuery Mobileを利用したサンプルを紹介します</p>
		</a></li>
</ul>
</div>
<div data-role="footer" data-theme="b">
	<h4><small>Copyright &copy; 2012 to-R All Rights Reserved.</small></h4>
</div>
</div>
<div data-role="page" id="page" data-theme="b">
<div data-role="header" data-theme="b">
	<a href="#index" data-direction="reverse" data-icon="arrow-l">TOP</a>
	<h1>jQuery Mobile</h1>
</div>
<div data-role="content">
	<h2>jQuery Mobile とは?</h2>
	<p>本連載で紹介する「jQuery Mobile」もそういった流れを組むスマートフォンフレームワークです。</p>
	<p>jQuery ( http://jquery.com/ ) の開発者であるJohn Resig氏 ( @jeresig ) により開発されています。</p>
</div>
<div data-role="footer" data-theme="b">
	<h4><small>Copyright &copy; 2012</small></h4>
</div>
</div>
</body>
</html>

ThemeRoller | jQuery Mobile

ThemeRoller | jQuery Mobile