blob: 5bf5210b5c2afc886c99488074ba547ba45fc536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!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.4.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>
|