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

43 lines
1.2 KiB
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!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 slider</title>
2010-10-13 14:39:50 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2013-02-05 13:47:59 +00:00
<script src="../../jquery-1.9.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">
<script>
2008-12-30 04:16:51 +00:00
$(function() {
2010-10-13 14:39:50 +00:00
$( "#slider-vertical" ).slider({
2008-12-30 04:16:51 +00:00
orientation: "vertical",
range: "min",
min: 0,
max: 100,
value: 60,
2010-10-13 14:39:50 +00:00
slide: function( event, ui ) {
$( "#amount" ).val( ui.value );
}
2008-12-30 04:16:51 +00:00
});
2010-10-13 14:39:50 +00:00
$( "#amount" ).val( $( "#slider-vertical" ).slider( "value" ) );
});
2008-12-30 04:16:51 +00:00
</script>
</head>
<body>
<p>
2010-10-13 14:39:50 +00:00
<label for="amount">Volume:</label>
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
</p>
<div id="slider-vertical" style="height:200px;"></div>
2010-10-13 14:39:50 +00:00
<div class="demo-description">
<p>Change the orientation of the 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>
2012-09-10 15:33:46 +00:00
</div>
2008-12-30 04:16:51 +00:00
</body>
</html>