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" >
2015-09-30 13:11:22 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2009-01-20 21:10:12 +00:00
< title > jQuery UI Slider - Vertical slider< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2010-10-13 14:39:50 +00:00
< link rel = "stylesheet" href = "../demos.css" >
2015-07-01 02:58:43 +00:00
< script src = "../../external/requirejs/require.js" > < / script >
< script src = "../bootstrap.js" >
2010-10-13 14:39:50 +00:00
$( "#slider-vertical" ).slider({
2008-12-30 04:16:51 +00:00
orientation: "vertical",
2008-12-30 21:33:00 +00:00
range: "min",
2008-12-31 01:20:50 +00:00
min: 0,
max: 100,
2008-12-30 21:33:00 +00:00
value: 60,
2010-10-13 14:39:50 +00:00
slide: function( event, ui ) {
$( "#amount" ).val( ui.value );
2008-12-30 21:33:00 +00:00
}
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 >
2008-12-31 05:01:58 +00:00
< p >
2010-10-13 14:39:50 +00:00
< label for = "amount" > Volume:< / label >
2023-03-28 22:18:07 +00:00
< input type = "text" id = "amount" readonly style = "border:0; color:#f6931f; font-weight:bold;" >
2008-12-31 05:01:58 +00:00
< / p >
2008-12-30 21:33:00 +00:00
< div id = "slider-vertical" style = "height:200px;" > < / div >
2008-12-30 19:08:39 +00:00
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 >