diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-10-13 15:24:00 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-10-13 15:24:00 -0400 |
commit | 68cb8fea09908c10cb98097486698570d2bdef6c (patch) | |
tree | 46c4edb1589af62612846e607ce31d65ef4376cd /demos/switchClass/default.html | |
parent | bb41a258a84413b1fa2fda1a17a9ed86fd9d83e9 (diff) | |
download | jquery-ui-68cb8fea09908c10cb98097486698570d2bdef6c.tar.gz jquery-ui-68cb8fea09908c10cb98097486698570d2bdef6c.zip |
Effects (switchClass) demos: Coding standards.
Diffstat (limited to 'demos/switchClass/default.html')
-rw-r--r-- | demos/switchClass/default.html | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/demos/switchClass/default.html b/demos/switchClass/default.html index 81c69c879..f119cab4c 100644 --- a/demos/switchClass/default.html +++ b/demos/switchClass/default.html @@ -1,24 +1,24 @@ <!DOCTYPE html> <html lang="en"> <head> - <meta charset="UTF-8" /> + <meta charset="utf-8"> <title>jQuery UI Effects - switchClass 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;} - #button { padding: .5em 1em; text-decoration: none; } - #effect {position: relative; } - .newClass { width: 240px; padding: 1em; letter-spacing: 0; font-size: 1.2em; margin: 0; } - .anotherNewClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; } + <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 {position: relative; } + .newClass { width: 240px; padding: 1em; letter-spacing: 0; font-size: 1.2em; margin: 0; } + .anotherNewClass { 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(){ - $(".newClass").switchClass('newClass', 'anotherNewClass', 1000); - $(".anotherNewClass").switchClass('anotherNewClass', 'newClass', 1000); + $( "#button" ).click(function(){ + $( ".newClass" ).switchClass( "newClass", "anotherNewClass", 1000 ); + $( ".anotherNewClass" ).switchClass( "anotherNewClass", "newClass", 1000 ); return false; }); }); @@ -28,7 +28,6 @@ <div class="demo"> - <div class="toggler"> <div id="effect" class="newClass ui-corner-all"> Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. @@ -38,10 +37,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> |