|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + <title>jQuery Mobile Docs - Select</title> |
| 7 | + <link rel="stylesheet" href="../../../themes/default/" /> |
| 8 | + <link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/> |
| 9 | + <script src="../../../js/jquery.js"></script> |
| 10 | + <script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script> |
| 11 | + <script src="../../_assets/js/jqm-docs.js"></script> |
| 12 | + <script src="../../../js/"></script> |
| 13 | +</head> |
| 14 | +<body> |
| 15 | + |
| 16 | + <div data-role="page" class="type-interior"> |
| 17 | + |
| 18 | + <div data-role="header" data-theme="f"> |
| 19 | + <h1>Select Menus</h1> |
| 20 | + <a href="../../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a> |
| 21 | + </div><!-- /header --> |
| 22 | + |
| 23 | + <div data-role="content"> |
| 24 | + <div class="content-primary"> |
| 25 | + |
| 26 | + <form action="#" method="get"> |
| 27 | + <h2>Sliders</h2> |
| 28 | + |
| 29 | + <ul data-role="controlgroup" data-type="horizontal" class="localnav"> |
| 30 | + <li><a href="index.html" data-role="button" data-transition="fade" class="ui-btn-active">Basics</a></li> |
| 31 | + <li><a href="options.html" data-role="button" data-transition="fade">Options</a></li> |
| 32 | + <li><a href="methods.html" data-role="button" data-transition="fade">Methods</a></li> |
| 33 | + <li><a href="events.html" data-role="button" data-transition="fade">Events</a></li> |
| 34 | + </ul> |
| 35 | + |
| 36 | + <p>To add a slider widget to your page, start with an <code>input</code> with a new HTML5 <code>type="range"</code> attribute. Specify the <code>value</code> (current value), <code>min</code> and <code>max</code> attribute values to configure the slider. The framework will parse these attributes to configure the slider. </p> |
| 37 | + <p>As you drag the slider, the input will update and vice-versa so they are always in sync so you can submit the slider value with form in a simple way. Set the <code>for</code> attribute of the <code>label</code> to match the ID of the <code>input</code> so they are semantically associated and wrap them in a <code>div</code> with the <code> data-role="fieldcontain"</code> attribute to group them.</p> |
| 38 | + |
| 39 | + <pre><code> |
| 40 | + <div data-role="fieldcontain"> |
| 41 | + <label for="slider">Input slider:</label> |
| 42 | + <input type="range" name="slider" id="slider" value="0" min="0" max="100" /> |
| 43 | + </div> |
| 44 | + </code></pre> |
| 45 | + |
| 46 | + <p>An example of a slider and input is displayed like this:</p> |
| 47 | + <div data-role="fieldcontain"> |
| 48 | + <label for="slider-1">Input slider:</label> |
| 49 | + <input type="range" name="slider-1" id="slider-1" value="0" min="0" max="100" data-theme="b" data-track-theme="a" /> |
| 50 | + </div> |
| 51 | + |
| 52 | + <p>By setting the <code>min</code> and <code>max</code>attributes you can configure the allowable number range of the slider track. The <code>value</code> of the input is used to configure the starting position of the handle and the value populated in the text input.</p> |
| 53 | + |
| 54 | + <p>The slider with a min of 500, max of 5,000 and initial value of 2,500</p> |
| 55 | + <div data-role="fieldcontain"> |
| 56 | + <label for="slider-2">Input slider:</label> |
| 57 | + <input type="range" name="slider-2" id="slider-2" value="2500" min="500" max="5000" /> |
| 58 | + </div> |
| 59 | + |
| 60 | + <p>Sliders also respond to the keyboards shortcuts. To increase the current value the Right Arrow, Up Arrow, and Page Up keys can be used. To decrease the current value the Left Arrow, Down Arrow, and Page Down keys can be used. To move the slider to its minimum or maximum value use the Home and End keys respectively.</p> |
| 61 | + |
| 62 | + |
| 63 | + <h2>Refreshing a slider</h2> |
| 64 | + |
| 65 | + <p>If you manipulate a slider via JavaScript, you must call the refresh method on it to update the visual styling. Here is an example:</p> |
| 66 | + |
| 67 | + <code> |
| 68 | + $("input[type=range]").val(60).slider("refresh"); |
| 69 | + </code> |
| 70 | + |
| 71 | + |
| 72 | + </form> |
| 73 | + </div><!--/content-primary --> |
| 74 | + |
| 75 | + <div class="content-secondary"> |
| 76 | + |
| 77 | + <div data-role="collapsible" data-collapsed="true" data-theme="b"> |
| 78 | + |
| 79 | + <h3>More in this section</h3> |
| 80 | + |
| 81 | + <ul data-role="listview" data-theme="c" data-dividertheme="d"> |
| 82 | + |
| 83 | + <li data-role="list-divider">Form elements</li> |
| 84 | + <li><a href="../docs-forms.html">Form basics</a></li> |
| 85 | + <li><a href="../forms-all.html">Form element gallery</a></li> |
| 86 | + <li><a href="../texts/index.html">Text inputs</a></li> |
| 87 | + <li><a href="../forms-search.html">Search inputs</a></li> |
| 88 | + <li data-theme="a"><a href="index.html">Slider</a></li> |
| 89 | + <li><a href="../forms-switch.html">Flip toggle switch</a></li> |
| 90 | + <li><a href="../forms-radiobuttons.html">Radio buttons</a></li> |
| 91 | + <li><a href="../forms-checkboxes.html">Checkboxes</a></li> |
| 92 | + <li><a href="../selects/index.html">Select menus</a></li> |
| 93 | + <li><a href="../forms-themes.html">Theming forms</a></li> |
| 94 | + <li><a href="../forms-all-native.html">Native form elements</a></li> |
| 95 | + <li><a href="../forms-sample.html">Submitting forms</a></li> |
| 96 | + <li><a href="../plugin-eventsmethods.html">Plugin methods</a></li> |
| 97 | + |
| 98 | + </ul> |
| 99 | + </div> |
| 100 | + </div> |
| 101 | + |
| 102 | +</div><!-- /content --> |
| 103 | + |
| 104 | +<div data-role="footer" class="footer-docs" data-theme="c"> |
| 105 | + <p>© 2011 The jQuery Project</p> |
| 106 | +</div> |
| 107 | + |
| 108 | +</div><!-- /page --> |
| 109 | + |
| 110 | +</body> |
| 111 | +</html> |
| 112 | + |
0 commit comments