diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-09-09 21:56:28 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-09-09 22:33:28 -0400 |
commit | 83244d933c481c6abdb2f957172d991212321d16 (patch) | |
tree | aafd07312295cb8fd0e0b1ac37f7b80a95288df8 /demos/addClass | |
parent | b79e92818fa027bbd3daec17d6417940e2b156ed (diff) | |
download | jquery-ui-83244d933c481c6abdb2f957172d991212321d16.tar.gz jquery-ui-83244d933c481c6abdb2f957172d991212321d16.zip |
Effects demos (partial): Coding standards.
Diffstat (limited to 'demos/addClass')
-rw-r--r-- | demos/addClass/default.html | 34 | ||||
-rw-r--r-- | demos/addClass/index.html | 4 |
2 files changed, 19 insertions, 19 deletions
diff --git a/demos/addClass/default.html b/demos/addClass/default.html index e2d9a79b0..7e657cb9a 100644 --- a/demos/addClass/default.html +++ b/demos/addClass/default.html @@ -1,29 +1,29 @@ <!DOCTYPE html> <html lang="en"> <head> - <meta charset="UTF-8" /> + <meta charset="utf-8"> <title>jQuery UI Effects - addClass 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; padding: 1em; font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; } .newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; } </style> - <script type="text/javascript"> + <script> $(function() { - $("#button").click(function() { - $('#effect').addClass('newClass', 1000, callback); + $( "#button" ).click(function() { + $( "#effect" ).addClass( "newClass", 1000, callback ); return false; }); - - function callback(){ - setTimeout(function(){ - $('#effect').removeClass('newClass'); - }, 1500); + + function callback() { + setTimeout(function() { + $( "#effect" ).removeClass( "newClass" ); + }, 1500 ); } }); </script> @@ -42,10 +42,10 @@ </div><!-- End demo --> -<div class="demo-description"> -<p>This demo adds a class which animates: text-indent, letter-spacing, width, height, padding, margin, and font-size.</p> +<div class="demo-description"> +<p>This demo adds a class which animates: text-indent, letter-spacing, width, height, padding, margin, and font-size.</p> </div><!-- End demo-description --> </body> diff --git a/demos/addClass/index.html b/demos/addClass/index.html index 0e9af371f..f5bd6a0e4 100644 --- a/demos/addClass/index.html +++ b/demos/addClass/index.html @@ -1,9 +1,9 @@ <!DOCTYPE html> <html lang="en"> <head> - <meta charset="UTF-8" /> + <meta charset="utf-8"> <title>jQuery UI Effects Demos</title> - <link type="text/css" href="../demos.css" rel="stylesheet" /> + <link rel="stylesheet" href="../demos.css"> </head> <body> |