diff options
Diffstat (limited to 'demos/effects_movement')
-rw-r--r-- | demos/effects_movement/bounce.html | 42 | ||||
-rw-r--r-- | demos/effects_movement/default.html | 42 | ||||
-rw-r--r-- | demos/effects_movement/index.html | 22 | ||||
-rw-r--r-- | demos/effects_movement/scale.html | 44 | ||||
-rw-r--r-- | demos/effects_movement/shake.html | 42 | ||||
-rw-r--r-- | demos/effects_movement/size.html | 54 |
6 files changed, 246 insertions, 0 deletions
diff --git a/demos/effects_movement/bounce.html b/demos/effects_movement/bounce.html new file mode 100644 index 000000000..5a6da30d5 --- /dev/null +++ b/demos/effects_movement/bounce.html @@ -0,0 +1,42 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Bounce Demo</title> + <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.3.js"></script> + <script type="text/javascript" src="../../ui/effects.core.js"></script> + <script type="text/javascript" src="../../ui/effects.bounce.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #bounce { width: 240px; height: 135px; padding: 0.4em; } + #bounce h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#bounce").click(function() { + $(this).effect("bounce"); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="bounce" class="ui-widget-content ui-corner-all"> + <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 anywhere in the dialog above to preview the effect.</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_movement/default.html b/demos/effects_movement/default.html new file mode 100644 index 000000000..5a6da30d5 --- /dev/null +++ b/demos/effects_movement/default.html @@ -0,0 +1,42 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Bounce Demo</title> + <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.3.js"></script> + <script type="text/javascript" src="../../ui/effects.core.js"></script> + <script type="text/javascript" src="../../ui/effects.bounce.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #bounce { width: 240px; height: 135px; padding: 0.4em; } + #bounce h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#bounce").click(function() { + $(this).effect("bounce"); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="bounce" class="ui-widget-content ui-corner-all"> + <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 anywhere in the dialog above to preview the effect.</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_movement/index.html b/demos/effects_movement/index.html new file mode 100644 index 000000000..98cdfff5a --- /dev/null +++ b/demos/effects_movement/index.html @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - General Demos</title> + <link type="text/css" href="../demos.css" rel="stylesheet" /> +</head> +<body> + +<div class="demos-nav"> + <h4>General Effects</h4> + <ul> + <li class="demo-config-on"><a href="default.html">Bounce</a></li> + <li><a href="scale.html">Scale</a></li> + <li><a href="shake.html">Shake</a></li> + <li><a href="size.html">Size</a></li> + </ul> +</div> + +</body> +</html> + + diff --git a/demos/effects_movement/scale.html b/demos/effects_movement/scale.html new file mode 100644 index 000000000..10bafb4d2 --- /dev/null +++ b/demos/effects_movement/scale.html @@ -0,0 +1,44 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Scale Demo</title> + <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.3.js"></script> + <script type="text/javascript" src="../../ui/effects.core.js"></script> + <script type="text/javascript" src="../../ui/effects.scale.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #scale { width: 240px; height: 135px; padding: 0.4em; } + #scale h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#scale").toggle(function() { + $(this).effect("scale", { percent: 50 }); + }, function() { + $(this).effect("scale", { percent: 200 }); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="scale" class="ui-widget-content ui-corner-all"> + <h3 class="ui-widget-header ui-corner-all">Scale</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 anywhere in the dialog above to preview the effect.</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_movement/shake.html b/demos/effects_movement/shake.html new file mode 100644 index 000000000..289a7cfd5 --- /dev/null +++ b/demos/effects_movement/shake.html @@ -0,0 +1,42 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Shake Demo</title> + <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.3.js"></script> + <script type="text/javascript" src="../../ui/effects.core.js"></script> + <script type="text/javascript" src="../../ui/effects.shake.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #shake { width: 240px; height: 135px; padding: 0.4em; } + #shake h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#shake").click(function() { + $(this).effect("shake"); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="shake" class="ui-widget-content ui-corner-all"> + <h3 class="ui-widget-header ui-corner-all">Shake</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 anywhere in the dialog above to preview the effect.</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_movement/size.html b/demos/effects_movement/size.html new file mode 100644 index 000000000..db56a28cc --- /dev/null +++ b/demos/effects_movement/size.html @@ -0,0 +1,54 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Size Demo</title> + <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.3.js"></script> + <script type="text/javascript" src="../../ui/effects.core.js"></script> + <script type="text/javascript" src="../../ui/effects.scale.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #size { width: 240px; height: 135px; padding: 0.4em; } + #size h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#size").toggle(function() { + $(this).effect("size", { + to: { + width: 300, + height: 100 + } + }); + }, function() { + $(this).effect("size", { + to: { + width: 240, + height: 135 + } + }); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="size" class="ui-widget-content ui-corner-all"> + <h3 class="ui-widget-header ui-corner-all">Size</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 anywhere in the dialog above to preview the effect.</p> + +</div><!-- End demo-description --> + +</body> +</html> |