jquery-ui/demos/slider/range-vertical.html

52 lines
1.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2008-12-30 04:16:51 +00:00
<html lang="en">
<head>
2010-10-13 14:39:50 +00:00
<meta charset="utf-8">
<title>jQuery UI Slider - Vertical range slider</title>
2010-10-13 14:39:50 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2011-03-03 01:44:26 +00:00
<script src="../../jquery-1.5.1.js"></script>
2010-10-13 14:39:50 +00:00
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.mouse.js"></script>
<script src="../../ui/jquery.ui.slider.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
#demo-frame > div.demo { padding: 10px !important; };
</style>
2010-10-13 14:39:50 +00:00
<script>
2008-12-30 04:16:51 +00:00
$(function() {
2010-10-13 14:39:50 +00:00
$( "#slider-range" ).slider({
2008-12-30 04:16:51 +00:00
orientation: "vertical",
range: true,
2010-10-13 14:39:50 +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
});
2010-10-13 14:39:50 +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>
<div class="demo">
<p>
2010-10-13 14:39:50 +00:00
<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 -->
2010-10-13 14:39:50 +00:00
<div class="demo-description">
<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>
</div><!-- End demo-description -->
2008-12-30 04:16:51 +00:00
</body>
</html>