jquery-ui/demos/progressbar/animated.html

45 lines
956 B
HTML
Raw Normal View History

<!DOCTYPE html>
2009-01-31 06:24:22 +00:00
<html lang="en">
<head>
2010-09-10 14:27:32 +00:00
<meta charset="utf-8">
2009-01-31 06:24:22 +00:00
<title>jQuery UI Progressbar - Animated</title>
2010-09-10 14:27:32 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2010-11-12 14:19:26 +00:00
<script src="../../jquery-1.4.4.js"></script>
2010-09-10 14:27:32 +00:00
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.progressbar.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
.ui-progressbar-value { background-image: url(images/pbar-ani.gif); }
2009-01-31 06:24:22 +00:00
</style>
2010-09-10 14:27:32 +00:00
<script>
2009-01-31 06:24:22 +00:00
$(function() {
2010-09-10 14:27:32 +00:00
$( "#progressbar" ).progressbar({
2009-01-31 06:24:22 +00:00
value: 59
});
});
</script>
</head>
<body>
<div class="demo">
<div id="progressbar"></div>
</div><!-- End demo -->
2010-09-10 14:27:32 +00:00
<div class="demo-description">
2009-01-31 06:24:22 +00:00
<p>
This progressbar has an animated fill by setting the
<code>background-image</code>
on the
<code>.ui-progressbar-value</code>
element, using css.
</p>
</div><!-- End demo-description -->
</body>
</html>