mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-21 06:40:59 +00:00
Added full-page theme examples for the sake of testing theme inheritance — see issue #3028.
This commit is contained in:
parent
5262c2be56
commit
cbc5a34e17
6 changed files with 823 additions and 97 deletions
|
|
@ -21,7 +21,18 @@
|
|||
</div><!-- /header -->
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
<div class="content-primary">
|
||||
|
||||
<ul data-role="controlgroup" data-type="horizontal" class="localnav">
|
||||
<li><a href="pages-themes.html" data-role="button" data-transition="fade" class="ui-btn-active">Theme Overview</a></li>
|
||||
|
||||
<li><a href="pages-themes/theme-a.html" data-role="button" data-transition="fade">A</a></li>
|
||||
<li><a href="pages-themes/theme-b.html" data-role="button" data-transition="fade">B</a></li>
|
||||
<li><a href="pages-themes/theme-c.html" data-role="button" data-transition="fade">C</a></li>
|
||||
<li><a href="pages-themes/theme-d.html" data-role="button" data-transition="fade">D</a></li>
|
||||
<li><a href="pages-themes/theme-e.html" data-role="button" data-transition="fade">E</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Page Theming</h2>
|
||||
|
||||
<p>jQuery Mobile has a rich <a href="../api/themes.html">theming system</a> that gives you full control of how pages are styled. There is detailed theming documentation within each page widget, but let's look at a few high-level examples of how theming is applied.</p>
|
||||
|
|
@ -33,59 +44,27 @@
|
|||
<div data-role="header">
|
||||
<h1>Default Theme</h1>
|
||||
</div>
|
||||
<div class="ui-bar ui-bar-c">
|
||||
<div data-role="controlgroup" data-type="horizontal" >
|
||||
<a href="#" data-icon="gear" data-role="button" data-inline="true">Tools</a>
|
||||
<a href="#" data-icon="star" data-role="button" data-inline="true">Like</a>
|
||||
<a href="#" data-icon="refresh" data-role="button" data-inline="true">Refresh</a>
|
||||
</div><!-- /controlgroup -->
|
||||
</div>
|
||||
|
||||
<div class="ui-body ui-body-c">
|
||||
<h3>Default Theme Content Header</h3>
|
||||
<p>This is the default content color swatch and a preview of a <a href="#" class="ui-link">link</a>.</p>
|
||||
<label for="slider1">Input slider:</label>
|
||||
<input type="range" name="slider1" id="slider1" value="50" min="0" max="100" />
|
||||
<fieldset data-role="controlgroup" data-type="horizontal" data-role="fieldcontain">
|
||||
<legend>Cache settings:</legend>
|
||||
<input type="radio" name="radio-choice-z1" id="radio-choice-y1" value="on" checked="checked" />
|
||||
<label for="radio-choice-y1">On</label>
|
||||
<input type="radio" name="radio-choice-z1" id="radio-choice-z1" value="off" />
|
||||
<label for="radio-choice-z1">Off</label>
|
||||
</fieldset>
|
||||
|
||||
<a href="#" data-role="button" data-inline="true">Button</a>
|
||||
</div>
|
||||
<div class="ui-bar ui-bar-a">
|
||||
<div data-role="controlgroup" data-type="horizontal" >
|
||||
<a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a>
|
||||
</div><!-- /controlgroup -->
|
||||
</div>
|
||||
|
||||
|
||||
<p>And each of the five "swatches" applies its style consistently across all page elements, as shown below:</p>
|
||||
|
||||
<h2>Swatch A</h2>
|
||||
<div data-role="header" data-position="inline">
|
||||
<h1>Header A</h1>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ui-body ui-body-a">
|
||||
<h3>Header</h3>
|
||||
<p>This is content color swatch "A" and a preview of a <a href="#" class="ui-link">link</a>.</p>
|
||||
<label for="slider1">Input slider:</label>
|
||||
<input type="range" name="slider1" id="slider1" value="50" min="0" max="100" data-theme="a" />
|
||||
<fieldset data-role="controlgroup" data-type="horizontal" data-role="fieldcontain">
|
||||
<legend>Cache settings:</legend>
|
||||
<input type="radio" name="radio-choice-a1" id="radio-choice-a1" value="on" checked="checked" />
|
||||
<label for="radio-choice-a1">On</label>
|
||||
<input type="radio" name="radio-choice-a1" id="radio-choice-b1" value="off" />
|
||||
<label for="radio-choice-b1">Off</label>
|
||||
</fieldset>
|
||||
<a href="#" data-role="button" data-inline="true">Button</a>
|
||||
</div>
|
||||
<div class="ui-bar ui-bar-a">
|
||||
<div data-role="controlgroup" data-type="horizontal" >
|
||||
<a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a>
|
||||
</div><!-- /controlgroup -->
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Swatch B</h2>
|
||||
|
|
@ -95,22 +74,8 @@
|
|||
<div class="ui-body ui-body-b">
|
||||
<h3>Header</h3>
|
||||
<p>This is content color swatch "B" and a preview of a <a href="#" class="ui-link">link</a>.</p>
|
||||
<label for="slider1">Input slider:</label>
|
||||
<input type="range" name="slider1" id="slider1" value="50" min="0" max="100" data-theme="b" />
|
||||
<fieldset data-role="controlgroup" data-type="horizontal" data-role="fieldcontain">
|
||||
<legend>Cache settings:</legend>
|
||||
<input type="radio" name="radio-choice-a2" id="radio-choice-a2" value="on" checked="checked" />
|
||||
<label for="radio-choice-a2">On</label>
|
||||
<input type="radio" name="radio-choice-a2" id="radio-choice-b2" value="off" />
|
||||
<label for="radio-choice-b2">Off</label>
|
||||
</fieldset>
|
||||
<a href="#" data-role="button" data-inline="true">Button</a>
|
||||
</div>
|
||||
<div class="ui-bar ui-bar-b">
|
||||
<div data-role="controlgroup" data-type="horizontal" >
|
||||
<a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a>
|
||||
</div><!-- /controlgroup -->
|
||||
</div>
|
||||
|
||||
<h2>Swatch C</h2>
|
||||
<div data-role="header" data-theme="c">
|
||||
|
|
@ -119,23 +84,9 @@
|
|||
<div class="ui-body ui-body-c">
|
||||
<h3>Header</h3>
|
||||
<p>This is content color swatch "C" and a preview of a <a href="#" class="ui-link">link</a>.</p>
|
||||
<label for="slider1">Input slider:</label>
|
||||
<input type="range" name="slider1" id="slider1" value="50" min="0" max="100" data-theme="c" />
|
||||
<fieldset data-role="controlgroup" data-type="horizontal" data-role="fieldcontain">
|
||||
<legend>Cache settings:</legend>
|
||||
<input type="radio" name="radio-choice-a3" id="radio-choice-a3" value="on" checked="checked" />
|
||||
<label for="radio-choice-a3">On</label>
|
||||
<input type="radio" name="radio-choice-a3" id="radio-choice-b3" value="off" />
|
||||
<label for="radio-choice-b3">Off</label>
|
||||
</fieldset>
|
||||
<a href="#" data-role="button" data-inline="true">Button</a>
|
||||
</div>
|
||||
<div class="ui-bar ui-bar-c">
|
||||
<div data-role="controlgroup" data-type="horizontal" >
|
||||
<a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a>
|
||||
</div><!-- /controlgroup -->
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Swatch D</h2>
|
||||
<div data-role="header" data-theme="d">
|
||||
<h1>Header D</h1>
|
||||
|
|
@ -143,22 +94,8 @@
|
|||
<div class="ui-body ui-body-d">
|
||||
<h3>Header</h3>
|
||||
<p>This is content color swatch "D" and a preview of a <a href="#" class="ui-link">link</a>.</p>
|
||||
<label for="slider1">Input slider:</label>
|
||||
<input type="range" name="slider1" id="slider1" value="50" min="0" max="100" data-theme="d" />
|
||||
<fieldset data-role="controlgroup" data-type="horizontal" data-role="fieldcontain">
|
||||
<legend>Cache settings:</legend>
|
||||
<input type="radio" name="radio-choice-a4" id="radio-choice-a4" value="on" checked="checked" />
|
||||
<label for="radio-choice-a4">On</label>
|
||||
<input type="radio" name="radio-choice-a4" id="radio-choice-b4" value="off" />
|
||||
<label for="radio-choice-b4">Off</label>
|
||||
</fieldset>
|
||||
<a href="#" data-role="button" data-inline="true">Button</a>
|
||||
</div>
|
||||
<div class="ui-bar ui-bar-d">
|
||||
<div data-role="controlgroup" data-type="horizontal" >
|
||||
<a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a>
|
||||
</div><!-- /controlgroup -->
|
||||
</div>
|
||||
|
||||
<h2>Swatch E</h2>
|
||||
<div data-role="header" data-theme="e">
|
||||
|
|
@ -167,24 +104,9 @@
|
|||
<div class="ui-body ui-body-e">
|
||||
<h3>Header</h3>
|
||||
<p>This is content color swatch "E" and a preview of a <a href="#" class="ui-link">link</a>.</p>
|
||||
<label for="slider1">Input slider:</label>
|
||||
<input type="range" name="slider1" id="slider1" value="50" min="0" max="100" data-theme="e" />
|
||||
<fieldset data-role="controlgroup" data-type="horizontal" data-role="fieldcontain">
|
||||
<legend>Cache settings:</legend>
|
||||
<input type="radio" name="radio-choice-a5" id="radio-choice-a5" value="on" checked="checked" />
|
||||
<label for="radio-choice-a5">On</label>
|
||||
<input type="radio" name="radio-choice-a5" id="radio-choice-b5" value="off" />
|
||||
<label for="radio-choice-b5">Off</label>
|
||||
</fieldset>
|
||||
<a href="#" data-role="button" data-inline="true">Button</a>
|
||||
</div>
|
||||
<div class="ui-bar ui-bar-e">
|
||||
<div data-role="controlgroup" data-type="horizontal" >
|
||||
<a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a><a href="#" data-inline="true" data-role="button">Button</a>
|
||||
</div><!-- /controlgroup -->
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div><!--/content-primary -->
|
||||
|
||||
<div class="content-secondary">
|
||||
|
|
@ -208,7 +130,6 @@
|
|||
<li><a href="page-dynamic.html">Dynamically Injecting Pages</a></li>
|
||||
<li><a href="page-scripting.html">Scripting pages</a></li>
|
||||
<li data-theme="a"><a href="pages-themes.html">Theming pages</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
161
docs/pages/pages-themes/theme-a.html
Normal file
161
docs/pages/pages-themes/theme-a.html
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>jQuery Mobile Docs - Theming Pages</title>
|
||||
<link rel="stylesheet" href="../../../css/themes/default/" />
|
||||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/>
|
||||
<script src="../../../js/jquery.js"></script>
|
||||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
|
||||
<script src="../../_assets/js/jqm-docs.js"></script>
|
||||
<script src="../../../js/"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" class="type-interior" data-theme="a">
|
||||
|
||||
<div data-role="header">
|
||||
<h1>Theming pages</h1>
|
||||
<a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
|
||||
</div><!-- /header -->
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
||||
<ul data-role="controlgroup" data-type="horizontal" class="localnav">
|
||||
<li><a href="../pages-themes.html" data-role="button" data-transition="fade">Theme Overview</a></li>
|
||||
|
||||
<li><a href="theme-a.html" data-role="button" data-transition="fade" class="ui-btn-active">A</a></li>
|
||||
<li><a href="theme-b.html" data-role="button" data-transition="fade">B</a></li>
|
||||
<li><a href="theme-c.html" data-role="button" data-transition="fade">C</a></li>
|
||||
<li><a href="theme-d.html" data-role="button" data-transition="fade">D</a></li>
|
||||
<li><a href="theme-e.html" data-role="button" data-transition="fade">E</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Theme A Sample Page</h2>
|
||||
|
||||
<p>This is an example of <code>data-theme="a"</code> applied to the same element as <code>data-role="page"</code>, showing how the theme is inherited by widgets throughout the page.</p>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="name-a">Text Input:</label>
|
||||
<input type="text" name="name" id="name-a" value="" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="switch-a">Flip switch:</label>
|
||||
<select name="switch-a" id="switch-a" data-role="slider">
|
||||
<option value="off">Off</option>
|
||||
<option value="on">On</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="slider-a">Slider:</label>
|
||||
<input type="range" name="slider" id="slider-a" value="0" min="0" max="100" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup" data-type="horizontal">
|
||||
<legend>Font styling:</legend>
|
||||
<input type="checkbox" name="checkbox-6a" id="checkbox-6a" class="custom" />
|
||||
<label for="checkbox-6a">b</label>
|
||||
|
||||
<input type="checkbox" name="checkbox-7a" id="checkbox-7a" class="custom" />
|
||||
<label for="checkbox-7a"><em>i</em></label>
|
||||
|
||||
<input type="checkbox" name="checkbox-8a" id="checkbox-8a" class="custom" />
|
||||
<label for="checkbox-8a">u</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup">
|
||||
<legend>Choose a pet:</legend>
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-1a" value="choice-1" />
|
||||
<label for="radio-choice-1a">Cat</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-2a" value="choice-2" />
|
||||
<label for="radio-choice-2a">Dog</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-3a" value="choice-3" />
|
||||
<label for="radio-choice-3a">Hamster</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-4a" value="choice-4" />
|
||||
<label for="radio-choice-4a">Lizard</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="select-choice-a" class="select">Choose shipping method:</label>
|
||||
<select name="select-choice-a" id="select-choice-a">
|
||||
<option value="standard">Standard: 7 day</option>
|
||||
<option value="rush">Rush: 3 days</option>
|
||||
<option value="express">Express: next day</option>
|
||||
<option value="overnight">Overnight</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<h2>Collapsible Sets</h2>
|
||||
<div data-role="collapsible-set">
|
||||
<div data-role="collapsible" data-collapsed="false">
|
||||
<h3>Section 1</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 2</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 3</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>Inset List</h2>
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li><a href="index.html">Inbox <span class="ui-li-count" >12</span></a></li>
|
||||
<li><a href="index.html">Outbox <span class="ui-li-count">0</span></a></li>
|
||||
<li><a href="index.html">Drafts <span class="ui-li-count">4</span></a></li>
|
||||
<li><a href="index.html">Sent <span class="ui-li-count">328</span></a></li>
|
||||
<li><a href="index.html">Trash <span class="ui-li-count">62</span></a></li>
|
||||
</ul>
|
||||
|
||||
</div><!--/content-primary -->
|
||||
|
||||
<div class="content-secondary">
|
||||
<div data-role="collapsible" data-collapsed="true" data-theme="a" data-content-theme="a">
|
||||
|
||||
<h3>More in this section</h3>
|
||||
|
||||
<ul data-role="listview" data-theme="a" data-dividertheme="a">
|
||||
<li data-role="list-divider">Pages & Dialogs</li>
|
||||
<li><a href="../page-anatomy.html">Anatomy of a page</a></li>
|
||||
<li><a href="../page-template.html" data-ajax="false">Single page template</a></li>
|
||||
<li><a href="../multipage-template.html" data-ajax="false">Multi-page template</a></li>
|
||||
<li><a href="../page-titles.html">Page titles</a></li>
|
||||
<li><a href="../page-links.html">Linking pages</a></li>
|
||||
<li><a href="../page-transitions.html" data-ajax="false">Page transitions</a></li>
|
||||
<li><a href="../page-dialogs.html">Dialogs</a></li>
|
||||
<li><a href="../page-cache.html">Prefetching & caching pages</a></li>
|
||||
<li><a href="../page-navmodel.html">Ajax, hashes & history</a></li>
|
||||
<li><a href="../page-dynamic.html">Dynamically Injecting Pages</a></li>
|
||||
<li><a href="../page-scripting.html">Scripting pages</a></li>
|
||||
<li data-theme="a"><a href="../pages-themes.html">Theming pages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div><!-- /content -->
|
||||
|
||||
<div data-role="footer" class="footer-docs">
|
||||
<p>© 2011 The jQuery Project</p>
|
||||
</div>
|
||||
|
||||
</div><!-- /page -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
161
docs/pages/pages-themes/theme-b.html
Normal file
161
docs/pages/pages-themes/theme-b.html
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>jQuery Mobile Docs - Theming Pages</title>
|
||||
<link rel="stylesheet" href="../../../css/themes/default/" />
|
||||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/>
|
||||
<script src="../../../js/jquery.js"></script>
|
||||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
|
||||
<script src="../../_assets/js/jqm-docs.js"></script>
|
||||
<script src="../../../js/"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" class="type-interior" data-theme="b">
|
||||
|
||||
<div data-role="header">
|
||||
<h1>Theming pages</h1>
|
||||
<a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
|
||||
</div><!-- /header -->
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
||||
<ul data-role="controlgroup" data-type="horizontal" class="localnav">
|
||||
<li><a href="../pages-themes.html" data-role="button" data-transition="fade">Theme Overview</a></li>
|
||||
|
||||
<li><a href="theme-a.html" data-role="button" data-transition="fade">A</a></li>
|
||||
<li><a href="theme-b.html" data-role="button" data-transition="fade" class="ui-btn-active">B</a></li>
|
||||
<li><a href="theme-c.html" data-role="button" data-transition="fade">C</a></li>
|
||||
<li><a href="theme-d.html" data-role="button" data-transition="fade">D</a></li>
|
||||
<li><a href="theme-e.html" data-role="button" data-transition="fade">E</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Theme B Sample Page</h2>
|
||||
|
||||
<p>This is an example of <code>data-theme="b"</code> applied to the same element as <code>data-role="page"</code>, showing how the theme is inherited by widgets throughout the page.</p>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="name-a">Text Input:</label>
|
||||
<input type="text" name="name" id="name-a" value="" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="switch-a">Flip switch:</label>
|
||||
<select name="switch-a" id="switch-a" data-role="slider">
|
||||
<option value="off">Off</option>
|
||||
<option value="on">On</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="slider-a">Slider:</label>
|
||||
<input type="range" name="slider" id="slider-a" value="0" min="0" max="100" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup" data-type="horizontal">
|
||||
<legend>Font styling:</legend>
|
||||
<input type="checkbox" name="checkbox-6a" id="checkbox-6a" class="custom" />
|
||||
<label for="checkbox-6a">b</label>
|
||||
|
||||
<input type="checkbox" name="checkbox-7a" id="checkbox-7a" class="custom" />
|
||||
<label for="checkbox-7a"><em>i</em></label>
|
||||
|
||||
<input type="checkbox" name="checkbox-8a" id="checkbox-8a" class="custom" />
|
||||
<label for="checkbox-8a">u</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup">
|
||||
<legend>Choose a pet:</legend>
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-1a" value="choice-1" />
|
||||
<label for="radio-choice-1a">Cat</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-2a" value="choice-2" />
|
||||
<label for="radio-choice-2a">Dog</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-3a" value="choice-3" />
|
||||
<label for="radio-choice-3a">Hamster</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-4a" value="choice-4" />
|
||||
<label for="radio-choice-4a">Lizard</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="select-choice-a" class="select">Choose shipping method:</label>
|
||||
<select name="select-choice-a" id="select-choice-a">
|
||||
<option value="standard">Standard: 7 day</option>
|
||||
<option value="rush">Rush: 3 days</option>
|
||||
<option value="express">Express: next day</option>
|
||||
<option value="overnight">Overnight</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<h2>Collapsible Sets</h2>
|
||||
<div data-role="collapsible-set">
|
||||
<div data-role="collapsible" data-collapsed="false">
|
||||
<h3>Section 1</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 2</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 3</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>Inset List</h2>
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li><a href="index.html">Inbox <span class="ui-li-count" >12</span></a></li>
|
||||
<li><a href="index.html">Outbox <span class="ui-li-count">0</span></a></li>
|
||||
<li><a href="index.html">Drafts <span class="ui-li-count">4</span></a></li>
|
||||
<li><a href="index.html">Sent <span class="ui-li-count">328</span></a></li>
|
||||
<li><a href="index.html">Trash <span class="ui-li-count">62</span></a></li>
|
||||
</ul>
|
||||
|
||||
</div><!--/content-primary -->
|
||||
|
||||
<div class="content-secondary">
|
||||
|
||||
<div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="b">
|
||||
|
||||
<h3>More in this section</h3>
|
||||
|
||||
<ul data-role="listview" data-theme="b" data-dividertheme="b">
|
||||
<li data-role="list-divider">Pages & Dialogs</li>
|
||||
<li><a href="../page-anatomy.html">Anatomy of a page</a></li>
|
||||
<li><a href="../page-template.html" data-ajax="false">Single page template</a></li>
|
||||
<li><a href="../multipage-template.html" data-ajax="false">Multi-page template</a></li>
|
||||
<li><a href="../page-titles.html">Page titles</a></li>
|
||||
<li><a href="../page-links.html">Linking pages</a></li>
|
||||
<li><a href="../page-transitions.html" data-ajax="false">Page transitions</a></li>
|
||||
<li><a href="../page-dialogs.html">Dialogs</a></li>
|
||||
<li><a href="../page-cache.html">Prefetching & caching pages</a></li>
|
||||
<li><a href="../page-navmodel.html">Ajax, hashes & history</a></li>
|
||||
<li><a href="../page-dynamic.html">Dynamically Injecting Pages</a></li>
|
||||
<li><a href="../page-scripting.html">Scripting pages</a></li>
|
||||
<li data-theme="a"><a href="../pages-themes.html">Theming pages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div><!-- /content -->
|
||||
|
||||
<div data-role="footer" class="footer-docs">
|
||||
<p>© 2011 The jQuery Project</p>
|
||||
</div>
|
||||
|
||||
</div><!-- /page -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
161
docs/pages/pages-themes/theme-c.html
Normal file
161
docs/pages/pages-themes/theme-c.html
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>jQuery Mobile Docs - Theming Pages</title>
|
||||
<link rel="stylesheet" href="../../../css/themes/default/" />
|
||||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/>
|
||||
<script src="../../../js/jquery.js"></script>
|
||||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
|
||||
<script src="../../_assets/js/jqm-docs.js"></script>
|
||||
<script src="../../../js/"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" class="type-interior" data-theme="c">
|
||||
|
||||
<div data-role="header" data-theme="c">
|
||||
<h1>Theming pages</h1>
|
||||
<a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
|
||||
</div><!-- /header -->
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
||||
<ul data-role="controlgroup" data-type="horizontal" class="localnav">
|
||||
<li><a href="../pages-themes.html" data-role="button" data-transition="fade">Theme Overview</a></li>
|
||||
|
||||
<li><a href="theme-a.html" data-role="button" data-transition="fade">A</a></li>
|
||||
<li><a href="theme-b.html" data-role="button" data-transition="fade">B</a></li>
|
||||
<li><a href="theme-c.html" data-role="button" data-transition="fade" class="ui-btn-active">C</a></li>
|
||||
<li><a href="theme-d.html" data-role="button" data-transition="fade">D</a></li>
|
||||
<li><a href="theme-e.html" data-role="button" data-transition="fade">E</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Theme C Sample Page</h2>
|
||||
|
||||
<p>This is an example of <code>data-theme="c"</code> applied to the same element as <code>data-role="page"</code>, showing how the theme is inherited by widgets throughout the page.</p>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="name-a">Text Input:</label>
|
||||
<input type="text" name="name" id="name-a" value="" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="switch-a">Flip switch:</label>
|
||||
<select name="switch-a" id="switch-a" data-role="slider">
|
||||
<option value="off">Off</option>
|
||||
<option value="on">On</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="slider-a">Slider:</label>
|
||||
<input type="range" name="slider" id="slider-a" value="0" min="0" max="100" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup" data-type="horizontal">
|
||||
<legend>Font styling:</legend>
|
||||
<input type="checkbox" name="checkbox-6a" id="checkbox-6a" class="custom" />
|
||||
<label for="checkbox-6a">b</label>
|
||||
|
||||
<input type="checkbox" name="checkbox-7a" id="checkbox-7a" class="custom" />
|
||||
<label for="checkbox-7a"><em>i</em></label>
|
||||
|
||||
<input type="checkbox" name="checkbox-8a" id="checkbox-8a" class="custom" />
|
||||
<label for="checkbox-8a">u</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup">
|
||||
<legend>Choose a pet:</legend>
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-1a" value="choice-1" />
|
||||
<label for="radio-choice-1a">Cat</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-2a" value="choice-2" />
|
||||
<label for="radio-choice-2a">Dog</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-3a" value="choice-3" />
|
||||
<label for="radio-choice-3a">Hamster</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-4a" value="choice-4" />
|
||||
<label for="radio-choice-4a">Lizard</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="select-choice-a" class="select">Choose shipping method:</label>
|
||||
<select name="select-choice-a" id="select-choice-a">
|
||||
<option value="standard">Standard: 7 day</option>
|
||||
<option value="rush">Rush: 3 days</option>
|
||||
<option value="express">Express: next day</option>
|
||||
<option value="overnight">Overnight</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<h2>Collapsible Sets</h2>
|
||||
<div data-role="collapsible-set">
|
||||
<div data-role="collapsible" data-collapsed="false">
|
||||
<h3>Section 1</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 2</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 3</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>Inset List</h2>
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li><a href="index.html">Inbox <span class="ui-li-count" >12</span></a></li>
|
||||
<li><a href="index.html">Outbox <span class="ui-li-count">0</span></a></li>
|
||||
<li><a href="index.html">Drafts <span class="ui-li-count">4</span></a></li>
|
||||
<li><a href="index.html">Sent <span class="ui-li-count">328</span></a></li>
|
||||
<li><a href="index.html">Trash <span class="ui-li-count">62</span></a></li>
|
||||
</ul>
|
||||
|
||||
</div><!--/content-primary -->
|
||||
|
||||
<div class="content-secondary">
|
||||
|
||||
<div data-role="collapsible" data-collapsed="true" data-theme="c" data-content-theme="c">
|
||||
|
||||
<h3>More in this section</h3>
|
||||
|
||||
<ul data-role="listview" data-theme="c" data-dividertheme="c">
|
||||
<li data-role="list-divider">Pages & Dialogs</li>
|
||||
<li><a href="../page-anatomy.html">Anatomy of a page</a></li>
|
||||
<li><a href="../page-template.html" data-ajax="false">Single page template</a></li>
|
||||
<li><a href="../multipage-template.html" data-ajax="false">Multi-page template</a></li>
|
||||
<li><a href="../page-titles.html">Page titles</a></li>
|
||||
<li><a href="../page-links.html">Linking pages</a></li>
|
||||
<li><a href="../page-transitions.html" data-ajax="false">Page transitions</a></li>
|
||||
<li><a href="../page-dialogs.html">Dialogs</a></li>
|
||||
<li><a href="../page-cache.html">Prefetching & caching pages</a></li>
|
||||
<li><a href="../page-navmodel.html">Ajax, hashes & history</a></li>
|
||||
<li><a href="../page-dynamic.html">Dynamically Injecting Pages</a></li>
|
||||
<li><a href="../page-scripting.html">Scripting pages</a></li>
|
||||
<li data-theme="a"><a href="../pages-themes.html">Theming pages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div><!-- /content -->
|
||||
|
||||
<div data-role="footer" class="footer-docs" data-theme="c">
|
||||
<p>© 2011 The jQuery Project</p>
|
||||
</div>
|
||||
|
||||
</div><!-- /page -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
161
docs/pages/pages-themes/theme-d.html
Normal file
161
docs/pages/pages-themes/theme-d.html
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>jQuery Mobile Docs - Theming Pages</title>
|
||||
<link rel="stylesheet" href="../../../css/themes/default/" />
|
||||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/>
|
||||
<script src="../../../js/jquery.js"></script>
|
||||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
|
||||
<script src="../../_assets/js/jqm-docs.js"></script>
|
||||
<script src="../../../js/"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" class="type-interior" data-theme="d">
|
||||
|
||||
<div data-role="header" data-theme="d">
|
||||
<h1>Theming pages</h1>
|
||||
<a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
|
||||
</div><!-- /header -->
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
||||
<ul data-role="controlgroup" data-type="horizontal" class="localnav">
|
||||
<li><a href="../pages-themes.html" data-role="button" data-transition="fade">Theme Overview</a></li>
|
||||
|
||||
<li><a href="theme-a.html" data-role="button" data-transition="fade">A</a></li>
|
||||
<li><a href="theme-b.html" data-role="button" data-transition="fade">B</a></li>
|
||||
<li><a href="theme-c.html" data-role="button" data-transition="fade">C</a></li>
|
||||
<li><a href="theme-d.html" data-role="button" data-transition="fade" class="ui-btn-active">D</a></li>
|
||||
<li><a href="theme-e.html" data-role="button" data-transition="fade">E</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Theme D Sample Page</h2>
|
||||
|
||||
<p>This is an example of <code>data-theme="d"</code> applied to the same element as <code>data-role="page"</code>, showing how the theme is inherited by widgets throughout the page.</p>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="name-a">Text Input:</label>
|
||||
<input type="text" name="name" id="name-a" value="" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="switch-a">Flip switch:</label>
|
||||
<select name="switch-a" id="switch-a" data-role="slider">
|
||||
<option value="off">Off</option>
|
||||
<option value="on">On</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="slider-a">Slider:</label>
|
||||
<input type="range" name="slider" id="slider-a" value="0" min="0" max="100" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup" data-type="horizontal">
|
||||
<legend>Font styling:</legend>
|
||||
<input type="checkbox" name="checkbox-6a" id="checkbox-6a" class="custom" />
|
||||
<label for="checkbox-6a">b</label>
|
||||
|
||||
<input type="checkbox" name="checkbox-7a" id="checkbox-7a" class="custom" />
|
||||
<label for="checkbox-7a"><em>i</em></label>
|
||||
|
||||
<input type="checkbox" name="checkbox-8a" id="checkbox-8a" class="custom" />
|
||||
<label for="checkbox-8a">u</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup">
|
||||
<legend>Choose a pet:</legend>
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-1a" value="choice-1" />
|
||||
<label for="radio-choice-1a">Cat</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-2a" value="choice-2" />
|
||||
<label for="radio-choice-2a">Dog</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-3a" value="choice-3" />
|
||||
<label for="radio-choice-3a">Hamster</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-4a" value="choice-4" />
|
||||
<label for="radio-choice-4a">Lizard</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="select-choice-a" class="select">Choose shipping method:</label>
|
||||
<select name="select-choice-a" id="select-choice-a">
|
||||
<option value="standard">Standard: 7 day</option>
|
||||
<option value="rush">Rush: 3 days</option>
|
||||
<option value="express">Express: next day</option>
|
||||
<option value="overnight">Overnight</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<h2>Collapsible Sets</h2>
|
||||
<div data-role="collapsible-set">
|
||||
<div data-role="collapsible" data-collapsed="false">
|
||||
<h3>Section 1</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 2</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 3</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>Inset List</h2>
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li><a href="index.html">Inbox <span class="ui-li-count" >12</span></a></li>
|
||||
<li><a href="index.html">Outbox <span class="ui-li-count">0</span></a></li>
|
||||
<li><a href="index.html">Drafts <span class="ui-li-count">4</span></a></li>
|
||||
<li><a href="index.html">Sent <span class="ui-li-count">328</span></a></li>
|
||||
<li><a href="index.html">Trash <span class="ui-li-count">62</span></a></li>
|
||||
</ul>
|
||||
|
||||
</div><!--/content-primary -->
|
||||
|
||||
<div class="content-secondary">
|
||||
|
||||
<div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
|
||||
|
||||
<h3>More in this section</h3>
|
||||
|
||||
<ul data-role="listview" data-theme="c" data-dividertheme="d">
|
||||
<li data-role="list-divider">Pages & Dialogs</li>
|
||||
<li><a href="../page-anatomy.html">Anatomy of a page</a></li>
|
||||
<li><a href="../page-template.html" data-ajax="false">Single page template</a></li>
|
||||
<li><a href="../multipage-template.html" data-ajax="false">Multi-page template</a></li>
|
||||
<li><a href="../page-titles.html">Page titles</a></li>
|
||||
<li><a href="../page-links.html">Linking pages</a></li>
|
||||
<li><a href="../page-transitions.html" data-ajax="false">Page transitions</a></li>
|
||||
<li><a href="../page-dialogs.html">Dialogs</a></li>
|
||||
<li><a href="../page-cache.html">Prefetching & caching pages</a></li>
|
||||
<li><a href="../page-navmodel.html">Ajax, hashes & history</a></li>
|
||||
<li><a href="../page-dynamic.html">Dynamically Injecting Pages</a></li>
|
||||
<li><a href="../page-scripting.html">Scripting pages</a></li>
|
||||
<li data-theme="a"><a href="../pages-themes.html">Theming pages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div><!-- /content -->
|
||||
|
||||
<div data-role="footer" class="footer-docs" data-theme="d">
|
||||
<p>© 2011 The jQuery Project</p>
|
||||
</div>
|
||||
|
||||
</div><!-- /page -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
161
docs/pages/pages-themes/theme-e.html
Normal file
161
docs/pages/pages-themes/theme-e.html
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>jQuery Mobile Docs - Theming Pages</title>
|
||||
<link rel="stylesheet" href="../../../css/themes/default/" />
|
||||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/>
|
||||
<script src="../../../js/jquery.js"></script>
|
||||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
|
||||
<script src="../../_assets/js/jqm-docs.js"></script>
|
||||
<script src="../../../js/"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div data-role="page" class="type-interior" data-theme="e">
|
||||
|
||||
<div data-role="header" data-theme="e">
|
||||
<h1>Theming pages</h1>
|
||||
<a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
|
||||
</div><!-- /header -->
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
||||
<ul data-role="controlgroup" data-type="horizontal" class="localnav">
|
||||
<li><a href="../pages-themes.html" data-role="button" data-transition="fade">Theme Overview</a></li>
|
||||
|
||||
<li><a href="theme-a.html" data-role="button" data-transition="fade">A</a></li>
|
||||
<li><a href="theme-b.html" data-role="button" data-transition="fade">B</a></li>
|
||||
<li><a href="theme-c.html" data-role="button" data-transition="fade">C</a></li>
|
||||
<li><a href="theme-d.html" data-role="button" data-transition="fade">D</a></li>
|
||||
<li><a href="theme-e.html" data-role="button" data-transition="fade" class="ui-btn-active">E</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Theme E Sample Page</h2>
|
||||
|
||||
<p>This is an example of <code>data-theme="e"</code> applied to the same element as <code>data-role="page"</code>, showing how the theme is inherited by widgets throughout the page.</p>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="name-a">Text Input:</label>
|
||||
<input type="text" name="name" id="name-a" value="" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="switch-a">Flip switch:</label>
|
||||
<select name="switch-a" id="switch-a" data-role="slider">
|
||||
<option value="off">Off</option>
|
||||
<option value="on">On</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="slider-a">Slider:</label>
|
||||
<input type="range" name="slider" id="slider-a" value="0" min="0" max="100" />
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup" data-type="horizontal">
|
||||
<legend>Font styling:</legend>
|
||||
<input type="checkbox" name="checkbox-6a" id="checkbox-6a" class="custom" />
|
||||
<label for="checkbox-6a">b</label>
|
||||
|
||||
<input type="checkbox" name="checkbox-7a" id="checkbox-7a" class="custom" />
|
||||
<label for="checkbox-7a"><em>i</em></label>
|
||||
|
||||
<input type="checkbox" name="checkbox-8a" id="checkbox-8a" class="custom" />
|
||||
<label for="checkbox-8a">u</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<fieldset data-role="controlgroup">
|
||||
<legend>Choose a pet:</legend>
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-1a" value="choice-1" />
|
||||
<label for="radio-choice-1a">Cat</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-2a" value="choice-2" />
|
||||
<label for="radio-choice-2a">Dog</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-3a" value="choice-3" />
|
||||
<label for="radio-choice-3a">Hamster</label>
|
||||
|
||||
<input type="radio" name="radio-choice-1" id="radio-choice-4a" value="choice-4" />
|
||||
<label for="radio-choice-4a">Lizard</label>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div data-role="fieldcontain">
|
||||
<label for="select-choice-a" class="select">Choose shipping method:</label>
|
||||
<select name="select-choice-a" id="select-choice-a">
|
||||
<option value="standard">Standard: 7 day</option>
|
||||
<option value="rush">Rush: 3 days</option>
|
||||
<option value="express">Express: next day</option>
|
||||
<option value="overnight">Overnight</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<h2>Collapsible Sets</h2>
|
||||
<div data-role="collapsible-set">
|
||||
<div data-role="collapsible" data-collapsed="false">
|
||||
<h3>Section 1</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 2</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
<div data-role="collapsible">
|
||||
<h3>Section 3</h3>
|
||||
<p>I'm the collapsible content in a set so this feels like an accordion. I'm hidden by default because I have the "collapsed" state; you need to expand the header to see me.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>Inset List</h2>
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li><a href="index.html">Inbox <span class="ui-li-count" >12</span></a></li>
|
||||
<li><a href="index.html">Outbox <span class="ui-li-count">0</span></a></li>
|
||||
<li><a href="index.html">Drafts <span class="ui-li-count">4</span></a></li>
|
||||
<li><a href="index.html">Sent <span class="ui-li-count">328</span></a></li>
|
||||
<li><a href="index.html">Trash <span class="ui-li-count">62</span></a></li>
|
||||
</ul>
|
||||
|
||||
</div><!--/content-primary -->
|
||||
|
||||
<div class="content-secondary">
|
||||
|
||||
<div data-role="collapsible" data-collapsed="true" data-theme="e" data-content-theme="e">
|
||||
|
||||
<h3>More in this section</h3>
|
||||
|
||||
<ul data-role="listview" data-theme="e" data-dividertheme="e">
|
||||
<li data-role="list-divider">Pages & Dialogs</li>
|
||||
<li><a href="../page-anatomy.html">Anatomy of a page</a></li>
|
||||
<li><a href="../page-template.html" data-ajax="false">Single page template</a></li>
|
||||
<li><a href="../multipage-template.html" data-ajax="false">Multi-page template</a></li>
|
||||
<li><a href="../page-titles.html">Page titles</a></li>
|
||||
<li><a href="../page-links.html">Linking pages</a></li>
|
||||
<li><a href="../page-transitions.html" data-ajax="false">Page transitions</a></li>
|
||||
<li><a href="../page-dialogs.html">Dialogs</a></li>
|
||||
<li><a href="../page-cache.html">Prefetching & caching pages</a></li>
|
||||
<li><a href="../page-navmodel.html">Ajax, hashes & history</a></li>
|
||||
<li><a href="../page-dynamic.html">Dynamically Injecting Pages</a></li>
|
||||
<li><a href="../page-scripting.html">Scripting pages</a></li>
|
||||
<li data-theme="a"><a href="../pages-themes.html">Theming pages</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div><!-- /content -->
|
||||
|
||||
<div data-role="footer" class="footer-docs" data-theme="e">
|
||||
<p>© 2011 The jQuery Project</p>
|
||||
</div>
|
||||
|
||||
</div><!-- /page -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue