aboutsummaryrefslogtreecommitdiffstats
path: root/demos/animate/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/animate/default.html')
-rw-r--r--demos/animate/default.html34
1 files changed, 21 insertions, 13 deletions
diff --git a/demos/animate/default.html b/demos/animate/default.html
index 21afff719..ffdfe9861 100644
--- a/demos/animate/default.html
+++ b/demos/animate/default.html
@@ -1,26 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
- <meta charset="UTF-8" />
+ <meta charset="utf-8">
<title>jQuery UI Effects - Animate Demo</title>
- <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
- <script type="text/javascript" src="../../ui/jquery.effects.core.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- .toggler { width: 500px; height: 200px; position: relative;}
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.4.2.js"></script>
+ <script src="../../ui/jquery.effects.core.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; position: relative; }
#button { padding: .5em 1em; text-decoration: none; }
#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">
+ <script>
$(function() {
- $("#button").toggle(
+ $( "#button" ).toggle(
function() {
- $("#effect").animate({backgroundColor: '#aa0000', color: '#fff', width: 500}, 1000);
+ $( "#effect" ).animate({
+ backgroundColor: "#aa0000",
+ color: "#fff",
+ width: 500
+ }, 1000 );
},
function() {
- $("#effect").animate({backgroundColor: '#fff', color: '#000', width: 240}, 1000);
+ $( "#effect" ).animate({
+ backgroundColor: "#fff",
+ color: "#000",
+ width: 240
+ }, 1000 );
}
);
});
@@ -43,10 +51,10 @@
</div><!-- End demo -->
-<div class="demo-description">
-<p>Click the button above to preview the effect.</p>
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
</div><!-- End demo-description -->
</body>