Search and Top Navigation
Ticket #4228: jquery_margin_auto_effect.html
File jquery_margin_auto_effect.html, 1.2 KB (added by ChronoworX, February 25, 2009 09:12AM UTC)
Test case
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Effects - Bounce Demo</title>
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script type="text/javascript" src="http://jqueryui.com/demos/effects_general/../../ui/effects.core.js"></script>
<script type="text/javascript" src="http://jqueryui.com/demos/effects_general/../../ui/effects.shake.js"></script>
<style type="text/css">
#bounce { width: 240px; height: 135px; padding: 0.4em; margin: 50px auto; border: 2px solid black; cursor: pointer;}
#bounce h3 { margin: 0; padding: 0.4em; text-align: center; }
</style>
<script type="text/javascript">
$(function() {
$("#bounce").click(function() {
$(this).effect("shake");
});
});
</script>
</head>
<body>
<div class="demo">
<div id="bounce">
<h3 class="ui-widget-header ui-corner-all">Bounce</h3>
<p>
Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi.
</p>
</div>
</div><!-- End demo -->
<div class="demo-description">
<p>
Click above to preview the <code>.effect("bounce")</code> effect.
</p>
</div><!-- End demo-description -->
</body>
</html>
Download in other formats:
Original Format
File jquery_margin_auto_effect.html, 1.2 KB (added by ChronoworX, February 25, 2009 09:12AM UTC)
Test case
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Effects - Bounce Demo</title>
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script type="text/javascript" src="http://jqueryui.com/demos/effects_general/../../ui/effects.core.js"></script>
<script type="text/javascript" src="http://jqueryui.com/demos/effects_general/../../ui/effects.shake.js"></script>
<style type="text/css">
#bounce { width: 240px; height: 135px; padding: 0.4em; margin: 50px auto; border: 2px solid black; cursor: pointer;}
#bounce h3 { margin: 0; padding: 0.4em; text-align: center; }
</style>
<script type="text/javascript">
$(function() {
$("#bounce").click(function() {
$(this).effect("shake");
});
});
</script>
</head>
<body>
<div class="demo">
<div id="bounce">
<h3 class="ui-widget-header ui-corner-all">Bounce</h3>
<p>
Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi.
</p>
</div>
</div><!-- End demo -->
<div class="demo-description">
<p>
Click above to preview the <code>.effect("bounce")</code> effect.
</p>
</div><!-- End demo-description -->
</body>
</html>