mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
31 lines
989 B
HTML
31 lines
989 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Progressbar Visual Test : Default</title>
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" />
|
|
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.progressbar.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
var bars = $("#progressbar1, #progressbar2, #progressbar3").progressbar();
|
|
|
|
$("#progress").keyup(function() {
|
|
bars.progressbar("value", +this.value);
|
|
}).keyup();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="progressbar1"></div>
|
|
<div id="progressbar2" style="width:300px"></div>
|
|
<div id="progressbar3" style="width:100px"></div>
|
|
|
|
<input id="progress" value="10" />
|
|
|
|
</body>
|
|
</html>
|