summaryrefslogtreecommitdiffstats
path: root/demos/animate/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/animate/default.html')
-rw-r--r--demos/animate/default.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/demos/animate/default.html b/demos/animate/default.html
index 1e22ead8f..a01f08ad7 100644
--- a/demos/animate/default.html
+++ b/demos/animate/default.html
@@ -1,25 +1,25 @@
<!doctype html>
<html lang="en">
<head>
- <title>jQuery UI Effect Methods - Animate Demo</title>
+ <title>jQuery UI Effects - Animate Demo</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../../ui/effects.core.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<style type="text/css">
- .toggler { width: 500px; height: 200px; }
+ .toggler { width: 500px; height: 200px; position: relative;}
#button { padding: .5em 1em; text-decoration: none; }
- #animate { width: 240px; height: 135px; padding: 0.4em; background: #fff;}
- #animate h3 { margin: 0; padding: 0.4em; text-align: center; }
+ #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; background: #fff; }
+ #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
</style>
<script type="text/javascript">
$(function() {
$("#button").toggle(
function() {
- $("#animate").animate({backgroundColor: '#aa0000', color: '#fff'}, 1000);
+ $("#effect").animate({backgroundColor: '#aa0000', color: '#fff', width: 500}, 1000);
},
function() {
- $("#animate").animate({backgroundColor: '#fff', color: '#000'}, 1000);
+ $("#effect").animate({backgroundColor: '#fff', color: '#000', width: 240}, 1000);
}
);
});
@@ -30,7 +30,7 @@
<div class="demo">
<div class="toggler">
- <div id="animate" class="ui-widget-content ui-corner-all">
+ <div id="effect" class="ui-widget-content ui-corner-all">
<h3 class="ui-widget-header ui-corner-all">Animate</h3>
<p>
Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi.
@@ -38,7 +38,7 @@
</div>
</div>
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
+<a href="#" id="button" class="ui-state-default ui-corner-all">Toggle Effect</a>
</div><!-- End demo -->