aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Parker <fg.todd@gmail.com>2009-01-27 22:46:40 +0000
committerTodd Parker <fg.todd@gmail.com>2009-01-27 22:46:40 +0000
commit61f39e196b0d6e7a00a323dc5240f0f742b9d61b (patch)
tree1e407129006551164abe8d11d7610df4ffada2c6
parent84a0971aab8756f8886b15ee3c6e281c2e86d3aa (diff)
downloadjquery-ui-61f39e196b0d6e7a00a323dc5240f0f742b9d61b.tar.gz
jquery-ui-61f39e196b0d6e7a00a323dc5240f0f742b9d61b.zip
Created new folder for effect_types that includes all standard effects together to match the new effects docs structure. Also created a new default.html page that contains a set of all effect demos together on one page. If this looks ok, the 3 separate effects folders can be deleted.
-rw-r--r--demos/effect_types/blind.html45
-rw-r--r--demos/effect_types/bounce.html42
-rw-r--r--demos/effect_types/clip.html45
-rw-r--r--demos/effect_types/default.html199
-rw-r--r--demos/effect_types/drop.html45
-rw-r--r--demos/effect_types/explode.html45
-rw-r--r--demos/effect_types/fold.html45
-rw-r--r--demos/effect_types/highlight.html42
-rw-r--r--demos/effect_types/index.html31
-rw-r--r--demos/effect_types/puff.html45
-rw-r--r--demos/effect_types/pulsate.html42
-rw-r--r--demos/effect_types/scale.html44
-rw-r--r--demos/effect_types/shake.html42
-rw-r--r--demos/effect_types/size.html54
-rw-r--r--demos/effect_types/slide.html45
-rw-r--r--demos/effect_types/transfer.html48
16 files changed, 859 insertions, 0 deletions
diff --git a/demos/effect_types/blind.html b/demos/effect_types/blind.html
new file mode 100644
index 000000000..413b2c7e4
--- /dev/null
+++ b/demos/effect_types/blind.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Blind Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+ <script type="text/javascript" src="../../ui/effects.blind.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .toggler { width: 500px; height: 300px; }
+ #blind { width: 240px; height: 135px; padding: 0.4em; }
+ #blind h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".toggler").click(function() {
+ $("> :eq(0)", this).toggle("blind");
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="toggler">
+ <div id="blind" class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Blind</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>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Click anywhere in the frame above to toggle the effect.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
diff --git a/demos/effect_types/bounce.html b/demos/effect_types/bounce.html
new file mode 100644
index 000000000..733b38478
--- /dev/null
+++ b/demos/effect_types/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.1.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/effect_types/clip.html b/demos/effect_types/clip.html
new file mode 100644
index 000000000..53d58cfa7
--- /dev/null
+++ b/demos/effect_types/clip.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Clip Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+ <script type="text/javascript" src="../../ui/effects.clip.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .toggler { width: 500px; height: 300px; }
+ #clip { width: 240px; height: 135px; padding: 0.4em; }
+ #clip .ui-widget-header { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".toggler").click(function() {
+ $("> :eq(0)", this).toggle("clip");
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="toggler">
+ <div id="clip" class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Clip</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>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Click anywhere in the frame above to toggle the effect.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
diff --git a/demos/effect_types/default.html b/demos/effect_types/default.html
new file mode 100644
index 000000000..f2c375d65
--- /dev/null
+++ b/demos/effect_types/default.html
@@ -0,0 +1,199 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - All Effect Types</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+
+ <script type="text/javascript" src="../../ui/effects.blind.js"></script>
+ <script type="text/javascript" src="../../ui/effects.bounce.js"></script>
+ <script type="text/javascript" src="../../ui/effects.clip.js"></script>
+ <script type="text/javascript" src="../../ui/effects.drop.js"></script>
+ <script type="text/javascript" src="../../ui/effects.explode.js"></script>
+ <script type="text/javascript" src="../../ui/effects.fold.js"></script>
+ <script type="text/javascript" src="../../ui/effects.highlight.js"></script>
+ <script type="text/javascript" src="../../ui/effects.puff.js"></script>
+ <script type="text/javascript" src="../../ui/effects.pulsate.js"></script>
+ <script type="text/javascript" src="../../ui/effects.scale.js"></script>
+ <script type="text/javascript" src="../../ui/effects.size.js"></script>
+ <script type="text/javascript" src="../../ui/effects.slide.js"></script>
+ <script type="text/javascript" src="../../ui/effects.shake.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">
+ .wrapper { width: 110px; height: 90px; float:left; margin:5px; cursor:pointer; }
+ .ui-widget-content { padding: 0.4em; }
+ .ui-widget-content h3 { margin: 0; padding: 0.4em; text-align: center; }
+ .ui-effects-transfer { border: 2px dotted gray; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#blind").click(function() {
+ $(this).children(0).toggle("blind");
+ });
+ $("#bounce").click(function() {
+ $(this).children(0).effect("bounce");
+ });
+ $("#clip").click(function() {
+ $(this).children(0).toggle("clip");
+ });
+ $("#drop").click(function() {
+ $(this).children(0).toggle("drop");
+ });
+ $("#explode").click(function() {
+ $(this).children(0).toggle("explode");
+ });
+ $("#fold").click(function() {
+ $(this).children(0).toggle("fold");
+ });
+ $("#highlight").click(function() {
+ $(this).children(0).effect("highlight");
+ });
+ $("#puff").click(function() {
+ $(this).children(0).toggle("puff");
+ });
+ $("#pulsate").click(function() {
+ $(this).children(0).effect("pulsate");
+ });
+ $("#scale").click(function() {
+ $(this).children(0).toggle("scale", { percent: 25 });
+ });
+ $("#shake").click(function() {
+ $(this).children(0).effect("shake");
+ });
+
+ $("#size").click(function() {
+ $(this).children(0).toggle(
+ function(){ $(this).effect("size", { to: {width: 50,height: 10} }); },
+ function(){ $(this).effect("size", { to: {width: 100,height: 70} }); }
+ );
+ });
+ $("#slide").click(function() {
+ $(this).children(0).toggle("slide");
+ });
+ $("#transfer").click(function() {
+ $(this).children(0).effect("transfer", {
+ to: "#highlight"
+ });
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="wrapper" id="blind">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Blind</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="bounce">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Bounce</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="clip">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Clip</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="drop">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Drop</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="explode">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Explode</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="fold">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Fold</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="highlight">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Highlight</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="puff">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Puff</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="pulsate">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Pulsate</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="scale">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Scale</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="shake">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Shake</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="size">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Size</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="slide">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Slide</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</div>
+
+<div class="wrapper" id="transfer">
+ <div class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Transfer</h3>
+ <p>Click to view the effect in action. </p>
+ </div>
+</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/effect_types/drop.html b/demos/effect_types/drop.html
new file mode 100644
index 000000000..c86c5c73f
--- /dev/null
+++ b/demos/effect_types/drop.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Drop Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+ <script type="text/javascript" src="../../ui/effects.drop.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .toggler { width: 500px; height: 300px; }
+ #drop { width: 240px; height: 135px; padding: 0.4em; }
+ #drop .ui-widget-header { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".toggler").click(function() {
+ $("> :eq(0)", this).toggle("drop");
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="toggler">
+ <div id="drop" class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Drop</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>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Click anywhere in the frame above to toggle the effect.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
diff --git a/demos/effect_types/explode.html b/demos/effect_types/explode.html
new file mode 100644
index 000000000..e8f689501
--- /dev/null
+++ b/demos/effect_types/explode.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Explode Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+ <script type="text/javascript" src="../../ui/effects.explode.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .toggler { width: 500px; height: 300px; }
+ #explode { width: 240px; height: 135px; padding: 0.4em; }
+ #explode h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".toggler").click(function() {
+ $("> :eq(0)", this).toggle("explode");
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="toggler">
+ <div id="explode" class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Explode</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>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Click anywhere in the frame above to toggle the effect.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
diff --git a/demos/effect_types/fold.html b/demos/effect_types/fold.html
new file mode 100644
index 000000000..8c1724a02
--- /dev/null
+++ b/demos/effect_types/fold.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Fold Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+ <script type="text/javascript" src="../../ui/effects.fold.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .toggler { width: 500px; height: 300px; }
+ #fold { width: 240px; height: 135px; padding: 0.4em; }
+ #fold h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".toggler").click(function() {
+ $("> :eq(0)", this).toggle("fold");
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="toggler">
+ <div id="fold" class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Fold</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>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Click anywhere in the frame above to toggle the effect.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
diff --git a/demos/effect_types/highlight.html b/demos/effect_types/highlight.html
new file mode 100644
index 000000000..3b8e6c7b4
--- /dev/null
+++ b/demos/effect_types/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.1.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/effect_types/index.html b/demos/effect_types/index.html
new file mode 100644
index 000000000..c4c397728
--- /dev/null
+++ b/demos/effect_types/index.html
@@ -0,0 +1,31 @@
+<!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">All effects</a></li>
+ <li><a href="blind.html">Blind</a></li>
+ <li><a href="bounce.html">Bounce</a></li>
+ <li><a href="clip.html">Clip</a></li>
+ <li><a href="drop.html">Drop</a></li>
+ <li><a href="explode.html">Explode</a></li>
+ <li><a href="fold.html">Fold</a></li>
+ <li><a href="default.html">Highlight</a></li>
+ <li><a href="puff.html">Puff</a></li>
+ <li><a href="pulsate.html">Pulsate</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>
+ <li><a href="slide.html">Slide</a></li>
+ <li><a href="transfer.html">Transfer</a></li>
+ </ul>
+</div>
+
+</body>
+</html>
diff --git a/demos/effect_types/puff.html b/demos/effect_types/puff.html
new file mode 100644
index 000000000..6bfd0cfb1
--- /dev/null
+++ b/demos/effect_types/puff.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Puff Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.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">
+ .toggler { width: 500px; height: 300px; }
+ #puff { width: 240px; height: 135px; padding: 0.4em; }
+ #puff h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".toggler").click(function() {
+ $("> :eq(0)", this).toggle("puff");
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="toggler">
+ <div id="puff" class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Puff</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>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Click anywhere in the frame above to toggle the effect.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
diff --git a/demos/effect_types/pulsate.html b/demos/effect_types/pulsate.html
new file mode 100644
index 000000000..75cdd5632
--- /dev/null
+++ b/demos/effect_types/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.1.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/effect_types/scale.html b/demos/effect_types/scale.html
new file mode 100644
index 000000000..712ee3f3b
--- /dev/null
+++ b/demos/effect_types/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.1.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/effect_types/shake.html b/demos/effect_types/shake.html
new file mode 100644
index 000000000..5655bd72d
--- /dev/null
+++ b/demos/effect_types/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.1.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/effect_types/size.html b/demos/effect_types/size.html
new file mode 100644
index 000000000..393c3856b
--- /dev/null
+++ b/demos/effect_types/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.1.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/effect_types/slide.html b/demos/effect_types/slide.html
new file mode 100644
index 000000000..3ddb7391f
--- /dev/null
+++ b/demos/effect_types/slide.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Effects - Slide Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
+ <script type="text/javascript" src="../../ui/effects.core.js"></script>
+ <script type="text/javascript" src="../../ui/effects.slide.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .toggler { width: 500px; height: 300px; }
+ #slide { width: 240px; height: 135px; padding: 0.4em; }
+ #slide h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $(".toggler").click(function() {
+ $("> :eq(0)", this).toggle("slide");
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div class="toggler">
+ <div id="slide" class="ui-widget-content ui-corner-all">
+ <h3 class="ui-widget-header ui-corner-all">Slide</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>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Click anywhere in the frame above to toggle the effect.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>
diff --git a/demos/effect_types/transfer.html b/demos/effect_types/transfer.html
new file mode 100644
index 000000000..bcf220476
--- /dev/null
+++ b/demos/effect_types/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.1.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>