mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
<!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-range").slider({
|
|
orientation: "vertical",
|
|
range: true,
|
|
values: [45, 67]
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="demo">
|
|
|
|
<p>Target sales goal (Millions):</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>
|
|
orientation: "vertical",
|
|
range: true,
|
|
values: [17, 67]
|
|
</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>
|