client/player/css/jq-css/demos/progressbar/resize.html
changeset 50 1ecfe4720da7
parent 49 af3778eab5e8
child 51 2d6866072851
equal deleted inserted replaced
49:af3778eab5e8 50:1ecfe4720da7
     1 <!DOCTYPE html>
       
     2 <html lang="en">
       
     3 <head>
       
     4 	<meta charset="UTF-8" />
       
     5 	<title>jQuery UI Progressbar - Resizable</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.progressbar.js"></script>
       
    11 	<script type="text/javascript" src="../../ui/jquery.ui.resizable.js"></script>
       
    12 	<link type="text/css" href="../demos.css" rel="stylesheet" />
       
    13 	<script type="text/javascript">
       
    14 	$(function() {
       
    15 		$("#progressbar").progressbar({
       
    16 			value: 37
       
    17 		});
       
    18 		$("#progressbarWrapper").resizable();
       
    19 	});
       
    20 	</script>
       
    21 </head>
       
    22 <body>
       
    23 
       
    24 <div class="demo">
       
    25 
       
    26 	<div id="progressbarWrapper" style="height:30px; " class="ui-widget-default">
       
    27 		<div id="progressbar" style="height:100%;"></div>
       
    28 	</div>
       
    29 
       
    30 </div><!-- End demo -->
       
    31 
       
    32 <div class="demo-description">
       
    33 
       
    34 <p>The progress bar's widths are specified in percentages for flexible sizing so it will resize to fit its container. Try resizing the height and width of this bar to see how it maintains the correct proportions. (This is not necessarily a real-world example, but it's a good illustration of how flexibly all the plugins are coded.)</p>
       
    35 
       
    36 </div><!-- End demo-description -->
       
    37 
       
    38 </body>
       
    39 </html>