blob: d29e09b2d8ff78706f85b2112bdcc7916d9c7dc8 (
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
|
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Slider - Range Min Demo</title>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.slider.js"></script>
<script type="text/javascript">
$(function() {
$("#slider-vertical").slider({
orientation: "vertical",
min: 0, max: 500, value: 140
});
});
</script>
</head>
<body>
<div class="demo">
<p>Volume:</p>
<div id="slider-vertical" style="height:250px;"></div>
</div><!-- End demo -->
<div class="demo-description">
<p>This is an example of a vertical slider created by setting the orientation to vertical:</p> <pre>orientation: "vertical",</pre>
<p>It's important to note that a vertical slider needs a height set. You can do this via the script options or by adding a height through CSS. </p>
</div><!-- End demo-description -->
</body>
</html>
|