Subversion Repositories Sites.obs-saisons.fr

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
40 aurelien 1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
	<meta charset="UTF-8" />
5
	<title>jQuery UI Slider - Vertical range slider</title>
6
	<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
7
	<script type="text/javascript" src="../../jquery-1.4.2.js"></script>
8
	<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
9
	<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
10
	<script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
11
	<script type="text/javascript" src="../../ui/jquery.ui.slider.js"></script>
12
	<link type="text/css" href="../demos.css" rel="stylesheet" />
13
	<style type="text/css">
14
		#demo-frame > div.demo { padding: 10px !important; };
15
	</style>
16
	<script type="text/javascript">
17
	$(function() {
18
		$("#slider-range").slider({
19
			orientation: "vertical",
20
			range: true,
21
			values: [17, 67],
22
			slide: function(event, ui) {
23
				$("#amount").val('$' + ui.values[0] + ' - $' + ui.values[1]);
24
			}
25
		});
26
		$("#amount").val('$' + $("#slider-range").slider("values", 0) + ' - $' + $("#slider-range").slider("values", 1));
27
	});
28
	</script>
29
</head>
30
<body>
31
 
32
<div class="demo">
33
 
34
<p>
35
<label for="amount">Target sales goal (Millions):</label>
36
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
37
</p>
38
 
39
<div id="slider-range" style="height:250px;"></div>
40
 
41
</div><!-- End demo -->
42
 
43
<div class="demo-description">
44
 
45
<p>Change the orientation of the range slider to vertical.  Assign a height value via <code>.height()</code> or by setting the height through CSS, and set the <code>orientation</code> option to "vertical."</p>
46
 
47
</div><!-- End demo-description -->
48
 
49
</body>
50
</html>