diff options
author | Maggie Costello Wachs <fg.maggie@gmail.com> | 2009-01-16 16:36:16 +0000 |
---|---|---|
committer | Maggie Costello Wachs <fg.maggie@gmail.com> | 2009-01-16 16:36:16 +0000 |
commit | 7cbd56f109328b520f993802b206d536bf6ea6a0 (patch) | |
tree | 3fb8ad3c7202c93f717892ffbae9ac0802e31d4d | |
parent | be932c2e58f9c47daa658ecf5775142b1c1a3d21 (diff) | |
download | jquery-ui-7cbd56f109328b520f993802b206d536bf6ea6a0.tar.gz jquery-ui-7cbd56f109328b520f993802b206d536bf6ea6a0.zip |
reorganized effects from "general" into "movement" and "feedback", as they're categorized on the home page
23 files changed, 453 insertions, 30 deletions
diff --git a/demos/effects_feedback/default.html b/demos/effects_feedback/default.html new file mode 100644 index 000000000..930338767 --- /dev/null +++ b/demos/effects_feedback/default.html @@ -0,0 +1,42 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Highlight 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.highlight.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #highlight { width: 240px; height: 135px; padding: 0.4em; } + #highlight h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#highlight").click(function() { + $(this).effect("highlight"); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="highlight" class="ui-widget-content ui-corner-all"> + <h3 class="ui-widget-header ui-corner-all">Highlight</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_feedback/highlight.html b/demos/effects_feedback/highlight.html new file mode 100644 index 000000000..930338767 --- /dev/null +++ b/demos/effects_feedback/highlight.html @@ -0,0 +1,42 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Highlight 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.highlight.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #highlight { width: 240px; height: 135px; padding: 0.4em; } + #highlight h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#highlight").click(function() { + $(this).effect("highlight"); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="highlight" class="ui-widget-content ui-corner-all"> + <h3 class="ui-widget-header ui-corner-all">Highlight</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_feedback/index.html b/demos/effects_feedback/index.html new file mode 100644 index 000000000..7ff062b42 --- /dev/null +++ b/demos/effects_feedback/index.html @@ -0,0 +1,19 @@ +<!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>Effect examples</h4> + <ul> + <li class="demo-config-on"><a href="default.html">Highlight</a></li> + <li><a href="pulsate.html">Pulsate</a></li> + <li><a href="transfer.html">Transfer</a></li> + </ul> +</div> + +</body> +</html> diff --git a/demos/effects_feedback/pulsate.html b/demos/effects_feedback/pulsate.html new file mode 100644 index 000000000..a39f77622 --- /dev/null +++ b/demos/effects_feedback/pulsate.html @@ -0,0 +1,42 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Pulsate 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.pulsate.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + #pulsate { width: 240px; height: 135px; padding: 0.4em; } + #pulsate h3 { margin: 0; padding: 0.4em; text-align: center; } + </style> + <script type="text/javascript"> + $(function() { + $("#pulsate").click(function() { + $(this).effect("pulsate"); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="pulsate" class="ui-widget-content ui-corner-all"> + <h3 class="ui-widget-header ui-corner-all">Pulsate</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_feedback/transfer.html b/demos/effects_feedback/transfer.html new file mode 100644 index 000000000..6b392e138 --- /dev/null +++ b/demos/effects_feedback/transfer.html @@ -0,0 +1,48 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Transfer 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.transfer.js"></script> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + .ui-effects-transfer { border: 2px dotted gray; } + #transfer { width: 240px; height: 135px; padding: 0.4em; } + #transfer h3 { margin: 0; padding: 0.4em; text-align: center; } + #transfer-target { width: 80px; height: 80px; margin-top: 80px; } + </style> + <script type="text/javascript"> + $(function() { + $("#transfer").click(function() { + $(this).effect("transfer", { + to: "#transfer-target" + }); + }); + }); + </script> +</head> +<body> + +<div class="demo"> + +<div id="transfer" class="ui-widget-content ui-corner-all"> + <h3 class="ui-widget-header ui-corner-all">Transfer</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 id="transfer-target" class="ui-widget-header"></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_general/index.html b/demos/effects_general/index.html index 578fa4d31..baa196296 100644 --- a/demos/effects_general/index.html +++ b/demos/effects_general/index.html @@ -7,7 +7,7 @@ <body> <div class="demos-nav"> - <h4>General Effects</h4> + <h4>Effect examples:</h4> <ul> <li class="demo-config-on"><a href="default.html">Bounce</a></li> <li><a href="highlight.html">Highlight</a></li> @@ -21,3 +21,4 @@ </body> </html> + 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> diff --git a/demos/effects_showhide/blind.html b/demos/effects_showhide/blind.html index 49253dc8f..4cef39730 100644 --- a/demos/effects_showhide/blind.html +++ b/demos/effects_showhide/blind.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("blind")</code> effect. You can click again to see the <code>.show("blind")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/clip.html b/demos/effects_showhide/clip.html index 9508f11d6..55184fa40 100644 --- a/demos/effects_showhide/clip.html +++ b/demos/effects_showhide/clip.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("clip")</code> effect. You can click again to see the <code>.show("clip")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/default.html b/demos/effects_showhide/default.html index 49253dc8f..4cef39730 100644 --- a/demos/effects_showhide/default.html +++ b/demos/effects_showhide/default.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("blind")</code> effect. You can click again to see the <code>.show("blind")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/drop.html b/demos/effects_showhide/drop.html index 7a5060ad6..288c86436 100644 --- a/demos/effects_showhide/drop.html +++ b/demos/effects_showhide/drop.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("drop")</code> effect. You can click again to see the <code>.show("drop")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/explode.html b/demos/effects_showhide/explode.html index df1f4b896..e3f302f76 100644 --- a/demos/effects_showhide/explode.html +++ b/demos/effects_showhide/explode.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("explode")</code> effect. You can click again to see the <code>.show("explode")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/fold.html b/demos/effects_showhide/fold.html index 57bcae8ef..cd3ec95ae 100644 --- a/demos/effects_showhide/fold.html +++ b/demos/effects_showhide/fold.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("fold")</code> effect. You can click again to see the <code>.show("fold")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/index.html b/demos/effects_showhide/index.html index 2fd0eeadc..e8a30d483 100644 --- a/demos/effects_showhide/index.html +++ b/demos/effects_showhide/index.html @@ -7,7 +7,7 @@ <body> <div class="demos-nav"> - <h4>Show/Hide and Toggle Effects</h4> + <h4>Effect examples</h4> <ul> <li class="demo-config-on"><a href="default.html">Blind</a></li> <li><a href="clip.html">Clip</a></li> diff --git a/demos/effects_showhide/puff.html b/demos/effects_showhide/puff.html index 073eb9e64..cbd6e346b 100644 --- a/demos/effects_showhide/puff.html +++ b/demos/effects_showhide/puff.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("puff")</code> effect. You can click again to see the <code>.show("puff")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/scale.html b/demos/effects_showhide/scale.html index 824d0d71b..d0d723b99 100644 --- a/demos/effects_showhide/scale.html +++ b/demos/effects_showhide/scale.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("scale")</code> effect. You can click again to see the <code>.show("scale")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/effects_showhide/slide.html b/demos/effects_showhide/slide.html index 0dda03ab6..d59b76059 100644 --- a/demos/effects_showhide/slide.html +++ b/demos/effects_showhide/slide.html @@ -37,9 +37,7 @@ <div class="demo-description"> -<p> -Click above to preview the <code>.hide("slide")</code> effect. You can click again to see the <code>.show("slide")</code> effect. -</p> +<p>Click anywhere in the frame above to toggle the effect.</p> </div><!-- End demo-description --> diff --git a/demos/index.html b/demos/index.html index 6643bf077..726e2622d 100644 --- a/demos/index.html +++ b/demos/index.html @@ -226,7 +226,8 @@ <dd><a href="slider/index.html">Slider</a></dd> <dd><a href="tabs/index.html">Tabs</a></dd> <dt>Effects</dt> - <dd><a href="effects_general/index.html">General</a></dd> + <dd><a href="effects_movement/index.html">Movement</a></dd> + <dd><a href="effects_feedback/index.html">Feedback</a></dd> <dd><a href="effects_showhide/index.html">Show/Hide</a></dd> </dl> </td> |