forked from commadelimited/jQuery-Mobile-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.html
More file actions
186 lines (151 loc) · 4.03 KB
/
lists.html
File metadata and controls
186 lines (151 loc) · 4.03 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!--
jQuery Mobile Boilerplate
/snippets/lists.html
-->
<!doctype html>
<html manifest="cache.manifest">
<head>
<title> jQuery Mobile Boilerplate - Listviews</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery Mobile CSS bits -->
<link rel="stylesheet" href="css/jquery.mobile-1.2.0.min.css" />
<!-- if you have a custom theme, add it here -->
<link rel="stylesheet" href="themes/jQuery-Mobile-Boilerplate.css" />
<!-- Custom css -->
<link rel="stylesheet" href="css/custom.css" />
<!-- Javascript includes -->
<script src="js/jquery-1.8.2.min.js"></script>
<script src="js/mobileinit.js"></script>
<script src="js/jquery.mobile-1.2.0.min.js"></script>
<script src="js/application.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<a href="index.html" data-icon="home">Home</a>
<h1>Listsviews</h1>
</div>
<div data-role="content">
<h2>Basic Listview</h2>
<ul data-role="listview" data-inset="true">
<li>Robert Heinlein</li>
<li>SM Stirling</li>
<li>Julian May</li>
<li>JRR Tolkien</li>
<li>Piers Anthony</li>
</ul>
<h2>Linked List</h2>
<ul data-role="listview" data-inset="true">
<li><a href="../index.html">Robert Heinlein</a></li>
<li><a href="../index.html">SM Stirling</a></li>
<li><a href="../index.html">Julian May</a></li>
</ul>
<h2>Linked List</h2>
<ul data-role="listview" data-inset="true">
<li>
<h3>Robert Heinlein</h3>
<p>A selection of his books.</p>
<ul>
<li>Starship Troopers</li>
<li>Friday</li>
<li>Door into Summer</li>
</ul>
</li>
<li>
<h3>SM Stirling</h3>
<p>A selection of his books.</p>
<ul>
<li>Dies the Fire</li>
<li>The Protector's War</li>
<li>A Meeting at Corvallis</li>
</ul>
</li>
<li>
<h3>Julian May</h3>
<p>A selection of her books.</p>
<ul>
<li>The Many-Colored Land</li>
<li>The Golden Torc</li>
<li>The Nonborn King</li>
<li>The Adversary</li>
</ul>
</li>
</ul>
<h2>Numbered List</h2>
<ol data-role="listview" data-inset="true">
<li><a href="index.html">Robert Heinlein</a></li>
<li><a href="index.html">SM Stirling</a></li>
<li><a href="index.html">Julian May</a></li>
</ol>
<h2>Split-Button List</h2>
<ul data-role="listview" data-split-icon="gear" data-split-theme="d" data-inset="true">
<li><a href="index.html">
<img src="images/broken-bells.jpg" />
<h3>Broken Bells</h3>
<p>Broken Bells</p>
</a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
</a></li>
<li><a href="index.html">
<img src="images/hot-chip.jpg" />
<h3>Warning</h3>
<p>Hot Chip</p>
</a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
</a></li>
<li><a href="index.html">
<img src="images/phoenix.jpg" />
<h3>Wolfgang Amadeus Phoenix</h3>
<p>Phoenix</p>
</a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
</a></li>
</ul>
<h2>List Dividers</h2>
<ul data-role="listview" data-inset="true">
<li data-role="list-divider">Men</li>
<li>Robert Heinlein</li>
<li>SM Stirling</li>
<li>JRR Tolkien</li>
<li>Piers Anthony</li>
<li data-role="list-divider">Women</li>
<li>Julian May</li>
</ul>
<h2>Search Filter</h2>
<ul data-role="listview" data-inset="true" data-filter="true">
<li data-role="list-divider">Men</li>
<li>Robert Heinlein</li>
<li>SM Stirling</li>
<li>JRR Tolkien</li>
<li>Piers Anthony</li>
<li data-role="list-divider">Women</li>
<li>Julian May</li>
</ul>
<h2>Count Bubbles</h2>
<ul data-role="listview" data-inset="true" data-filter="true">
<li>
Robert Heinlein
<span class="ui-li-count">32</span>
</li>
<li>
SM Stirling
<span class="ui-li-count">15</span>
</li>
<li>
JRR Tolkien
<span class="ui-li-count">9</span>
</li>
<li>
Piers Anthony
<span class="ui-li-count">42</span>
</li>
<li>
Julian May
<span class="ui-li-count">27</span>
</li>
</ul>
</div>
<div data-role="footer" data-theme="c">
<p>© 2012 - jQuery Mobile Boilerplate</p>
</div>
</div>
</body>
</html>