2008-12-30 04:16:51 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2008-12-31 22:16:02 +00:00
|
|
|
<title>jQuery UI Slider - Vertical Range Demo</title>
|
2009-01-07 02:36:51 +00:00
|
|
|
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
|
2009-01-14 23:26:15 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.3.js"></script>
|
2008-12-30 04:16:51 +00:00
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.slider.js"></script>
|
2008-12-31 06:29:31 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
2008-12-31 15:22:54 +00:00
|
|
|
<style type="text/css">
|
2008-12-31 14:25:59 +00:00
|
|
|
#demo-frame > div.demo { padding: 10px !important; };
|
|
|
|
</style>
|
2008-12-30 04:16:51 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$("#slider-range").slider({
|
|
|
|
orientation: "vertical",
|
|
|
|
range: true,
|
2008-12-31 05:01:58 +00:00
|
|
|
values: [17, 67],
|
|
|
|
slide: function(event, ui) {
|
|
|
|
$("#amount").val('$' + ui.values[0] + ' - $' + ui.values[1]);
|
|
|
|
}
|
2008-12-30 04:16:51 +00:00
|
|
|
});
|
2008-12-31 05:01:58 +00:00
|
|
|
$("#amount").val('$' + $("#slider-range").slider("values", 0) + ' - $' + $("#slider-range").slider("values", 1));
|
2008-12-30 04:16:51 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2008-12-30 19:08:39 +00:00
|
|
|
<div class="demo">
|
|
|
|
|
2008-12-31 05:01:58 +00:00
|
|
|
<p>
|
|
|
|
<label for="amount">Target sales goal (Millions):</label>
|
|
|
|
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
|
|
|
|
</p>
|
|
|
|
|
2008-12-30 19:08:39 +00:00
|
|
|
<div id="slider-range" style="height:250px;"></div>
|
|
|
|
|
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
2008-12-31 05:01:58 +00:00
|
|
|
<p>
|
|
|
|
This is an example of a vertical range slider created by setting the orientation to vertical:
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre><code>orientation: "vertical",
|
2008-12-30 19:08:39 +00:00
|
|
|
range: true,
|
|
|
|
values: [17, 67]
|
2008-12-31 05:01:58 +00:00
|
|
|
</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>
|
2008-12-30 19:08:39 +00:00
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
2008-12-30 04:16:51 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|