source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/demos/progressbar/animated.html@ 24245

Last change on this file since 24245 was 24245, checked in by sjb48, 13 years ago

Oran code for supporting format changes to document.

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4 <title>jQuery UI Progressbar - Animated</title>
5 <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
6 <script type="text/javascript" src="../../jquery-1.4.1.js"></script>
7 <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
8 <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
9 <script type="text/javascript" src="../../ui/jquery.ui.progressbar.js"></script>
10 <link type="text/css" href="../demos.css" rel="stylesheet" />
11 <style type="text/css">
12 .ui-progressbar-value { background-image: url(images/pbar-ani.gif); }
13 </style>
14 <script type="text/javascript">
15 $(function() {
16 $("#progressbar").progressbar({
17 value: 59
18 });
19 });
20 </script>
21</head>
22<body>
23
24<div class="demo">
25
26<div id="progressbar"></div>
27
28</div><!-- End demo -->
29
30<div class="demo-description">
31
32<p>
33This progressbar has an animated fill by setting the
34<code>background-image</code>
35on the
36<code>.ui-progressbar-value</code>
37element, using css.
38</p>
39
40</div><!-- End demo-description -->
41
42</body>
43</html>
Note: See TracBrowser for help on using the repository browser.