aboutsummaryrefslogtreecommitdiff
path: root/static/development-bundle/demos/progressbar/animated.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/development-bundle/demos/progressbar/animated.html')
-rw-r--r--static/development-bundle/demos/progressbar/animated.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/static/development-bundle/demos/progressbar/animated.html b/static/development-bundle/demos/progressbar/animated.html
deleted file mode 100644
index db013d9..0000000
--- a/static/development-bundle/demos/progressbar/animated.html
+++ /dev/null
@@ -1,42 +0,0 @@
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.3.2.js"></script>
7 <script type="text/javascript" src="../../ui/ui.core.js"></script>
8 <script type="text/javascript" src="../../ui/ui.progressbar.js"></script>
9 <link type="text/css" href="../demos.css" rel="stylesheet" />
10 <style type="text/css">
11 .ui-progressbar-value { background-image: url(images/pbar-ani.gif); }
12 </style>
13 <script type="text/javascript">
14 $(function() {
15 $("#progressbar").progressbar({
16 value: 59
17 });
18 });
19 </script>
20</head>
21<body>
22
23<div class="demo">
24
25<div id="progressbar"></div>
26
27</div><!-- End demo -->
28
29<div class="demo-description">
30
31<p>
32This progressbar has an animated fill by setting the
33<code>background-image</code>
34on the
35<code>.ui-progressbar-value</code>
36element, using css.
37</p>
38
39</div><!-- End demo-description -->
40
41</body>
42</html>