]> source.dussan.org Git - jquery-ui.git/commitdiff
slightly reorganized/renamed demos to better reflect functionality
authorMaggie Costello Wachs <fg.maggie@gmail.com>
Tue, 20 Jan 2009 21:10:12 +0000 (21:10 +0000)
committerMaggie Costello Wachs <fg.maggie@gmail.com>
Tue, 20 Jan 2009 21:10:12 +0000 (21:10 +0000)
demos/slider/colorpicker.html
demos/slider/default.html
demos/slider/index.html
demos/slider/multiple_vertical.html
demos/slider/range.html
demos/slider/range_vertical.html
demos/slider/rangemax.html
demos/slider/rangemin.html
demos/slider/side_scroll.html
demos/slider/slider_vertical.html
demos/slider/steps.html

index 60e673ede565bc01a44f5fb0846bd9f9fc3ff1c7..7bd4edf1ece94844239e40c6747c1263093e92db 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Colorpicker Demo</title>
+       <title>jQuery UI Slider - Colorpicker</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -83,9 +83,7 @@ Simple Colorpicker
 
 <div class="demo-description" style="clear:left;">
 
-<p>
-This example shows how easy it is to put together three sliders to make a simple RGB colorpicker.
-</p>
+<p>Combine three sliders to create a simple RGB colorpicker.</p>
 
 </div><!-- End demo-description -->
 
index 196af067a77cd1cec06e9b41a7a0ec3c51c69712..4adc27053dfeaaddccbbbd9998ad2a9fe25264d1 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Default Demo</title>
+       <title>jQuery UI Slider - Default functionality</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -26,9 +26,7 @@
 
 <div class="demo-description">
 
-<p>
-The default slider has a single handle and is horizontal. The handle can be moved with the mouse or by using the arrow keys.
-</p>
+<p>The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.</p>
 
 </div><!-- End demo-description -->
 
index cd89f6bcc25dc8a4d18113ab5adb3658e111f48f..2319efad63b5d1bde7e6034b858acebe90c4d07d 100644 (file)
@@ -9,14 +9,14 @@
 <div class="demos-nav">
        <h4>Examples</h4>
        <ul>
-               <li class="demo-config-on"><a href="default.html">Default Slider</a></li>
-               <li><a href="steps.html">Snap to every 50 steps</a></li>
+               <li class="demo-config-on"><a href="default.html">Default functionality</a></li>
+               <li><a href="steps.html">Snap to increments</a></li>
                <li><a href="range.html">Range slider</a></li>
-               <li><a href="rangemin.html">Range with fixed min</a></li>
-               <li><a href="rangemax.html">Range with fixed max</a></li>
-               <li><a href="slider_vertical.html">Vertical single slider</a></li>
+               <li><a href="rangemin.html">Range with fixed minimum</a></li>
+               <li><a href="rangemax.html">Range with fixed maximum</a></li>
+               <li><a href="slider_vertical.html">Vertical slider</a></li>
                <li><a href="range_vertical.html">Vertical range slider</a></li>
-               <li><a href="multiple_vertical.html">Multiple vertical sliders</a></li>
+               <li><a href="multiple_vertical.html">Multiple sliders</a></li>
                <li><a href="colorpicker.html">Simple colorpicker</a></li>
                <li><a href="side_scroll.html">Simple scrollbar</a></li>
        </ul>
index ba6d9b2c2a8b69692f1f7eafd48cc433599aeb4f..1a279b026e1a2f4644b1a3111fee241c263ae4b5 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Multiple Vertical Sliders Demo</title>
+       <title>jQuery UI Slider - Multiple sliders</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -82,9 +82,7 @@ Graphic EQ
 
 <div class="demo-description" style="clear:left;">
 
-<p>
-This example shows how easy it is to add multiple sliders to a page, each with their own options, to make a UI for a music player.
-</p>
+<p>Combine horizontal and vertical sliders, each with their own options, to create the UI for a music player.</p>
 
 </div><!-- End demo-description -->
 
index 356fad63c9fac35258ddb61e81249d4c8b6033db..8bc8a5cd981984a42e2fb6378f10122f4b688b5a 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Range Demo</title>
+       <title>jQuery UI Slider - Range slider</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-Example of a range slider that had two drag handles and a filled bar that connects the two handles to indicate that the values between them are selected.
-This is created by setting the range option:
-</p>
-
-<pre><code>range: true
-</code></pre>
+<p>Set the <strong>range</strong> option to true to capture a range of values with two drag handles.  The space between the handles is filled with a different background color to indicate those values are selected.</p>
 
 </div><!-- End demo-description -->
 
index fe1bef0447ec71f8ffab3529ac00e107876f0afa..7d80bd3a110dcb041142c828fead86c50712317d 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Vertical Range Demo</title>
+       <title>jQuery UI Slider - Vertical range slider</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-This is an example of a vertical range slider created by setting the orientation to vertical:
-</p>
-
-<pre><code>orientation: "vertical",
-range: true,
-values: [17, 67]
-</code></pre>
-
-<p>
-It's important to note that a vertical slider needs a height set.
-You can do this via <code>.height()</code> or by setting the height through CSS.
-</p>
-
-<p>
-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback.
-</p>
+<p>Change the orientation of the range slider to vertical.  Assign a height value via <strong>.height()</strong> or by setting the height through CSS, and set the <strong>orientation</strong> option to "vertical."</p>
 
 </div><!-- End demo-description -->
 
index 148474e8fd7008d65fbb10dd596a4602823c259a..7d51f8d34cb38e12a9cc9d224ef48d7df50e85e8 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Range Max Demo</title>
+       <title>jQuery UI Slider - Range with fixed maximum</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-An example of a range slider that has the filled bar hard-coded to the maximum value plus a single slider.
-This makes it clear that selecting a value will also include all values above the selection.
-This is a range option type:
-</p>
-
-<pre><code>range: "max"
-</code></pre>
-
-<p>
-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback.
-</p>
+<p>Fix the maximum value of the range slider so that the user can only select a minimum.  Set the <strong>range</strong> option to "max."</p>
 
 </div><!-- End demo-description -->
 
index 7642deb8b4ebd5e51d288fa279009e1a93f224ba..ad0addc1160b0c15a2473bca6db2a89a0ce687a5 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Range Min Demo</title>
+       <title>jQuery UI Slider - Range with fixed minimum</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-An example of a range slider that has the filled bar hard-coded to the minimum value plus a single slider.
-This makes it clear that selecting a value will also include all values below the selection.
-This is a range option type:
-</p>
-
-<pre><code>range: "min"
-</code></pre>
-
-<p>
-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback.
-</p>
+<p>Fix the minimum value of the range slider so that the user can only select a maximum.  Set the <strong>range</strong> option to "min."</p>
 
 </div><!-- End demo-description -->
 
index fbe1fa651aa0025be1461add29bd235c1bda796f..0c33228a046f4da430e34a73b8226221a0162bc1 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Default Demo</title>
+       <title>jQuery UI Slider - Slider scrollbar</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-Example of how a slider can be used to manipulate the positioning of content on the page. In this case, it acts as a scrollbar.
-</p>
+<p>Use a slider to manipulate the positioning of content on the page. In this case, it acts as a scrollbar with the potential to capture values if needed.</p>
 
 </div><!-- End demo-description -->
 
index 5a663eddab1e063af64b80c388efbbe243a58744..f0be30e0e3499dc3a3735e49ffe981abc030eea4 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Vertical Single Slider Demo</title>
+       <title>jQuery UI Slider - Vertical slider</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-This is an example of a minimum range vertical slider created by setting the orientation to vertical:
-</p>
-
-<pre><code>orientation: "vertical"
-</code></pre>
-
-<p>
-It's important to note that a vertical slider needs a height set.
-You can do this via <code>.height()</code> or by setting the height through CSS.
-</p>
-
-<p>
-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback.
-</p>
+<p>Change the orientation of the slider to vertical.  Assign a height value via <strong>.height()</strong> or by setting the height through CSS, and set the <strong>orientation</strong> option to "vertical."</p>
 
 </div><!-- End demo-description -->
 
index cbbf5f469e59cc88e5f2b112433bbebc88904eaf..25064f526adb5f586f93d7ecf4eb3b73c3872b38 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Slider - Steps Demo</title>
+       <title>jQuery UI Slider - Snap to increments</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-This slider has a step value set that will only allow for increments of 50 to be selected.
-The default step increment is 1.
-The drag handle will snap to drop points every 50 units.
-This is set in an option called step:
-</p>
-
-<pre><code>min: 0,
-max: 500,
-step: 50
-</code></pre>
-
-<p>
-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback.
-</p>
+<p>Increment slider values with the <strong>step</strong> option set to an integer, commonly a dividend of the slider's maximum value.  The default increment is 1.</p>
 
 </div><!-- End demo-description -->