blob: 3365dfaca9839579298752f431e3d850956f4c92 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Slider - Vertical Range Demo</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.3rc2.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.slider.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<style type="text/css">
#demo-frame > div.demo { padding: 10px !important; };
</style>
<script type="text/javascript">
$(function() {
$("#slider-range").slider({
orientation: "vertical",
range: true,
values: [17, 67],
slide: function(event, ui) {
$("#amount").val('$' + ui.values[0] + ' - $' + ui.values[1]);
}
});
$("#amount").val('$' + $("#slider-range").slider("values", 0) + ' - $' + $("#slider-range").slider("values", 1));
});
</script>
</head>
<body>
<div class="demo">
<p>
<label for="amount">Target sales goal (Millions):</label>
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
</p>
<div id="slider-range" style="height:250px;"></div>
</div><!-- End demo -->
<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>
</div><!-- End demo-description -->
</body>
</html>
|