Effects (removeClass) demos: coding standards.

This commit is contained in:
Scott González 2010-09-27 15:41:35 -04:00
parent e8e3168a39
commit f02c41ec51
2 changed files with 23 additions and 23 deletions

View File

@ -1,28 +1,28 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="utf-8">
<title>jQuery UI Effects - removeClass Demo</title> <title>jQuery UI Effects - removeClass Demo</title>
<link type="text/css" href="http://jquery-ui.googlecode.com/svn/trunk/themes/base/jquery.ui.all.css" rel="stylesheet" /> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/trunk/jquery-1.4.2.js"></script> <script src="../../jquery-1.4.2.js"></script>
<script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/trunk/ui/jquery.effects.core.js"></script> <script src="../../ui/jquery.effects.core.js"></script>
<link type="text/css" href="http://jquery-ui.googlecode.com/svn/trunk/demos/demos.css" rel="stylesheet" /> <link rel="stylesheet" href="../demos.css">
<style type="text/css"> <style>
.toggler { width: 500px; height: 200px; position: relative; } .toggler { width: 500px; height: 200px; position: relative; }
#button { padding: .5em 1em; text-decoration: none; } #button { padding: .5em 1em; text-decoration: none; }
#effect { position: relative; width: 240px; padding: 1em; letter-spacing: 0; font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; } #effect { position: relative; width: 240px; padding: 1em; letter-spacing: 0; 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; } .newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
</style> </style>
<script type="text/javascript"> <script>
$(function() { $(function() {
$( "#button" ).click(function() { $( "#button" ).click(function() {
$('#effect').removeClass('newClass', 1000, callback); $( "#effect" ).removeClass( "newClass", 1000, callback );
return false; return false;
}); });
function callback() { function callback() {
setTimeout(function() { setTimeout(function() {
$('#effect').addClass('newClass'); $( "#effect" ).addClass( "newClass" );
}, 1500 ); }, 1500 );
} }
}); });
@ -42,10 +42,10 @@
</div><!-- End demo --> </div><!-- End demo -->
<div class="demo-description"> <div class="demo-description">
<p>Click the button above to preview the effect.</p> <p>Click the button above to preview the effect.</p>
</div><!-- End demo-description --> </div><!-- End demo-description -->
</body> </body>

View File

@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="utf-8">
<title>jQuery UI Effects Demos</title> <title>jQuery UI Effects Demos</title>
<link type="text/css" href="../demos.css" rel="stylesheet" /> <link rel="stylesheet" href="../demos.css">
</head> </head>
<body> <body>