2010-03-12 03:18:34 +00:00
|
|
|
<!DOCTYPE html>
|
2009-02-27 18:05:18 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-09-10 01:56:28 +00:00
|
|
|
<meta charset="utf-8">
|
2010-09-10 02:33:09 +00:00
|
|
|
<title>jQuery UI Effects - addClass demo</title>
|
2010-09-10 01:56:28 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
|
2012-03-22 13:57:33 +00:00
|
|
|
<script src="../../jquery-1.7.2.js"></script>
|
2010-09-10 01:56:28 +00:00
|
|
|
<script src="../../ui/jquery.effects.core.js"></script>
|
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<style>
|
|
|
|
.toggler { width: 500px; height: 200px; position: relative; }
|
2009-02-27 18:05:18 +00:00
|
|
|
#button { padding: .5em 1em; text-decoration: none; }
|
2009-11-15 23:52:54 +00:00
|
|
|
#effect { width: 240px; padding: 1em; font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; }
|
2010-07-16 13:37:31 +00:00
|
|
|
.newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
|
2009-02-27 18:05:18 +00:00
|
|
|
</style>
|
2010-09-10 01:56:28 +00:00
|
|
|
<script>
|
2009-02-27 18:05:18 +00:00
|
|
|
$(function() {
|
2010-09-10 01:56:28 +00:00
|
|
|
$( "#button" ).click(function() {
|
|
|
|
$( "#effect" ).addClass( "newClass", 1000, callback );
|
2009-03-02 09:26:09 +00:00
|
|
|
return false;
|
2009-02-27 18:05:18 +00:00
|
|
|
});
|
2010-09-10 01:56:28 +00:00
|
|
|
|
|
|
|
function callback() {
|
|
|
|
setTimeout(function() {
|
|
|
|
$( "#effect" ).removeClass( "newClass" );
|
|
|
|
}, 1500 );
|
2009-02-27 18:05:18 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="demo">
|
|
|
|
|
|
|
|
<div class="toggler">
|
2009-02-27 19:06:57 +00:00
|
|
|
<div id="effect" class=" ui-corner-all">
|
|
|
|
Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede.
|
2009-02-27 18:05:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
|
|
|
|
|
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-09-10 01:56:28 +00:00
|
|
|
<div class="demo-description">
|
|
|
|
<p>This demo adds a class which animates: text-indent, letter-spacing, width, height, padding, margin, and font-size.</p>
|
2009-02-27 18:05:18 +00:00
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|