aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/effect_methods/animate.html52
-rw-r--r--demos/effect_methods/effect.html49
-rw-r--r--demos/effect_methods/hide.html47
-rw-r--r--demos/effect_methods/show.html49
-rw-r--r--demos/effect_methods/switch-class.html53
-rw-r--r--demos/effect_methods/toggle-class.html48
-rw-r--r--demos/effect_methods/toggle.html46
-rw-r--r--demos/effect_types/all_effects.html222
-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
-rw-r--r--demos/effects_easings/default.html92
-rw-r--r--demos/effects_easings/images/target.pngbin541 -> 0 bytes
-rw-r--r--demos/effects_easings/index.html17
-rw-r--r--demos/effects_feedback/default.html42
-rw-r--r--demos/effects_feedback/highlight.html42
-rw-r--r--demos/effects_feedback/index.html19
-rw-r--r--demos/effects_feedback/pulsate.html42
-rw-r--r--demos/effects_feedback/transfer.html48
-rw-r--r--demos/effects_general/bounce.html44
-rw-r--r--demos/effects_general/default.html44
-rw-r--r--demos/effects_general/highlight.html44
-rw-r--r--demos/effects_general/index.html23
-rw-r--r--demos/effects_general/pulsate.html44
-rw-r--r--demos/effects_general/scale.html46
-rw-r--r--demos/effects_general/shake.html44
-rw-r--r--demos/effects_general/size.html56
-rw-r--r--demos/effects_general/transfer.html50
-rw-r--r--demos/effects_movement/bounce.html42
-rw-r--r--demos/effects_movement/default.html42
-rw-r--r--demos/effects_movement/index.html22
-rw-r--r--demos/effects_movement/scale.html44
-rw-r--r--demos/effects_movement/shake.html42
-rw-r--r--demos/effects_movement/size.html54
-rw-r--r--demos/effects_showhide/blind.html45
-rw-r--r--demos/effects_showhide/clip.html45
-rw-r--r--demos/effects_showhide/default.html45
-rw-r--r--demos/effects_showhide/drop.html45
-rw-r--r--demos/effects_showhide/explode.html45
-rw-r--r--demos/effects_showhide/fold.html45
-rw-r--r--demos/effects_showhide/index.html24
-rw-r--r--demos/effects_showhide/puff.html45
-rw-r--r--demos/effects_showhide/scale.html45
-rw-r--r--demos/effects_showhide/slide.html45
57 files changed, 0 insertions, 2797 deletions
diff --git a/demos/effect_methods/animate.html b/demos/effect_methods/animate.html
deleted file mode 100644
index 1e22ead8f..000000000
--- a/demos/effect_methods/animate.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effect Methods - Animate Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
- <script type="text/javascript" src="../../ui/effects.core.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- .toggler { width: 500px; height: 200px; }
- #button { padding: .5em 1em; text-decoration: none; }
- #animate { width: 240px; height: 135px; padding: 0.4em; background: #fff;}
- #animate h3 { margin: 0; padding: 0.4em; text-align: center; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#button").toggle(
- function() {
- $("#animate").animate({backgroundColor: '#aa0000', color: '#fff'}, 1000);
- },
- function() {
- $("#animate").animate({backgroundColor: '#fff', color: '#000'}, 1000);
- }
- );
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <div id="animate" class="ui-widget-content ui-corner-all">
- <h3 class="ui-widget-header ui-corner-all">Animate</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>
-
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Click the button above to preview the effect.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_methods/effect.html b/demos/effect_methods/effect.html
deleted file mode 100644
index 6c84bc98a..000000000
--- a/demos/effect_methods/effect.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effect Methods - Effect Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.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">
- .toggler { width: 500px; height: 200px; }
- #button { padding: .5em 1em; text-decoration: none; }
- #effect { width: 240px; height: 135px; padding: 0.4em; }
- #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#button").click(function() {
- $("#effect").effect("bounce");
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <div id="effect" class="ui-widget-content ui-corner-all">
- <h3 class="ui-widget-header ui-corner-all">Effect</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>
-
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
-
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Click the button above to show the effect.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_methods/hide.html b/demos/effect_methods/hide.html
deleted file mode 100644
index d1de3c3d7..000000000
--- a/demos/effect_methods/hide.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effect Methods - Hide Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.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">
- .toggler { width: 500px; height: 200px; }
- #button { padding: .5em 1em; text-decoration: none; }
- #hide { width: 240px; height: 135px; padding: 0.4em; }
- #hide h3 { margin: 0; padding: 0.4em; text-align: center; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#button").click(function() {
- $('#hide').hide("bounce");
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <div id="hide" class="ui-widget-content ui-corner-all">
- <h3 class="ui-widget-header ui-corner-all">Hide</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>
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Click the button above to preview the effect.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_methods/show.html b/demos/effect_methods/show.html
deleted file mode 100644
index 5723874e5..000000000
--- a/demos/effect_methods/show.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effect Methods - Show Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.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">
- .toggler { width: 500px; height: 200px; }
- #button { padding: .5em 1em; text-decoration: none; }
- #show { width: 240px; height: 135px; padding: 0.4em; }
- #show h3 { margin: 0; padding: 0.4em; text-align: center; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#button").click(function() {
- $("#show").show("bounce");
- });
- $('#show').hide();
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <div id="show" class="ui-widget-content ui-corner-all">
- <h3 class="ui-widget-header ui-corner-all">Show</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>
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
-
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Click the button above to show the effect.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_methods/switch-class.html b/demos/effect_methods/switch-class.html
deleted file mode 100644
index c1ed06fe8..000000000
--- a/demos/effect_methods/switch-class.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effect Methods - Switch Class Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
- <script type="text/javascript" src="../../ui/effects.core.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- .toggler { width: 500px; height: 200px; }
- #button { padding: .5em 1em; text-decoration: none; }
- #animate h3 { margin: 0; padding: 0.4em; text-align: center; }
- .first { width: 240px; height: 135px; padding: 0.4em; }
- .second { width: 480px; height: 135px; padding: 0.4em; font-size: 1.6em; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#button").toggle(
- function() {
- $("#animate").switchClass('first', 'second');
- },
- function() {
- $("#animate").switchClass('second', 'first');
- }
- );
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <div id="animate" class="first ui-widget-content ui-corner-all">
- <h3 class="ui-widget-header ui-corner-all">Animate</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>
-
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Click the button above to preview the effect.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_methods/toggle-class.html b/demos/effect_methods/toggle-class.html
deleted file mode 100644
index 77ae5e686..000000000
--- a/demos/effect_methods/toggle-class.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effect Methods - Add Class Demo</title>
- <link type="text/css" href="http://jquery-ui.googlecode.com/svn/trunk/themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/trunk/jquery-1.3.2.js"></script>
- <script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/trunk/ui/effects.core.js"></script>
- <link type="text/css" href="http://jquery-ui.googlecode.com/svn/trunk/demos/demos.css" rel="stylesheet" />
- <style type="text/css">
- .toggler { width: 500px; height: 200px; }
- #button { padding: .5em 1em; text-decoration: none; }
- #animate { width: 240px; padding: 0.4em; }
- #animate h3 { margin: 0; padding: 0.4em; text-align: center; }
- .class { font-size: 1.6em; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#button").click(function() {
- $('#animate').toggleClass('class', 1000);
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <div id="animate" class="ui-widget-content ui-corner-all">
- <h3 class="ui-widget-header ui-corner-all">Animate</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>
-
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Click the button above to preview the effect.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_methods/toggle.html b/demos/effect_methods/toggle.html
deleted file mode 100644
index 6d5b09538..000000000
--- a/demos/effect_methods/toggle.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effect Methods - Toggle Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.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">
- .toggler { width: 500px; height: 200px; }
- #button { padding: .5em 1em; text-decoration: none; }
- #toggle { width: 240px; height: 135px; padding: 0.4em; }
- #toggle h3 { margin: 0; padding: 0.4em; text-align: center; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#button").click(function() {
- $("#toggle").toggle("bounce");
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <div id="toggle" class="ui-widget-content ui-corner-all">
- <h3 class="ui-widget-header ui-corner-all">Toggle</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>
-<a href="#" id="button" class="ui-state-default ui-corner-all">Show Effect</a>
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Click the button above to preview the effect.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_types/all_effects.html b/demos/effect_types/all_effects.html
deleted file mode 100644
index e25c8deae..000000000
--- a/demos/effect_types/all_effects.html
+++ /dev/null
@@ -1,222 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects Test Suite</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.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.pulsate.js"></script>
- <script type="text/javascript" src="../../ui/effects.scale.js"></script>
- <script type="text/javascript" src="../../ui/effects.shake.js"></script>
- <script type="text/javascript" src="../../ui/effects.slide.js"></script>
- <script type="text/javascript" src="../../ui/effects.transfer.js"></script>
-
-
- <script type="text/javascript">
-
- $(function() {
-
- $("li div")
- .hover(function() { $(this).addClass("ui-state-hover"); },
- function() { $(this).removeClass("ui-state-hover"); });
- var effect = function(el, n, o) {
- $.extend(o, {
- easing: "easeOutQuint"
- });
-
- $(el).bind("click", function() {
-
- $(this).hide(n, o, 1000, function() {
- var self = this;
- window.setTimeout(function() {
- $(self).show(n, o, 1000);
- },500);
- });
- });
-
- };
- effect("#blindHorizontally", "blind", { direction: "horizontal" });
- effect("#blindVertically", "blind", { direction: "vertical" });
- effect("#bounce3times", "bounce", { times:3 });
- effect("#clipHorizontally", "clip", { direction: "horizontal" });
- effect("#clipVertically", "clip", { direction: "vertical" });
- effect("#dropDown", "drop", { direction: "down" });
- effect("#dropUp", "drop", { direction: "up" });
- effect("#dropLeft", "drop", { direction: "left" });
- effect("#dropRight", "drop", { direction: "right" });
- effect("#explode9", "explode", {});
- effect("#explode36", "explode", { pieces: 36 });
- effect("#fold", "fold", { size: 50 });
- effect("#highlight", "highlight", {});
- effect("#pulsate", "pulsate", { times: 2 });
- effect("#puff", "puff", { times: 2 });
- effect("#scale", "scale", {});
- $("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); });
- effect("#slideDown", "slide", { direction: "down" });
- effect("#slideUp", "slide", { direction: "up" });
- effect("#slideLeft", "slide", { direction: "left" });
- effect("#slideRight", "slide", { direction: "right" });
- $("#transfer").bind("click", function() { $(this).addClass("current").effect("transfer", { to: "div:eq(0)" }, 1000, function() { $(this).removeClass("current"); }); });
- });
- </script>
-
- <style>
- li { height:70px; width:80px; float:left; list-style:none; margin:5px; }
- li div { height:56px; width:66px; padding:7px; }
- li div p strong { display:block; font-size:110%; margin-bottom:2px; }
- .ui-effects-transfer {
- border: 1px dotted #fff;
- background: #666;
- opacity: 0.25;
- }
- </style>
-
-</head>
-<body>
-
-<ul class="effects">
-
- <li>
- <div class="ui-state-default ui-corner-all" id="blindHorizontally">
- <p><strong>Blind</strong>horizontally</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="blindVertically">
- <p><strong>Blind</strong> vertically</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="bounce3times">
- <p><strong>Bounce</strong> 3 times</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="clipHorizontally">
- <p><strong>Clip</strong> horizontally</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="clipVertically">
- <p><strong>Clip</strong> vertically</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="dropDown">
- <p><strong>Drop</strong> down</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="dropUp">
- <p><strong>Drop</strong> up</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="dropLeft">
- <p><strong>Drop</strong> left</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="dropRight">
- <p><strong>Drop</strong> right</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="explode9">
- <p><strong>Explode</strong> in 9 pieces</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="explode36">
- <p><strong>Explode</strong> in 36 pieces</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="fold">
- <p><strong>Fold</strong></p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="highlight">
- <p><strong>Highlight</strong></p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="pulsate">
- <p><strong>Pulsate</strong> 2 times</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="puff">
- <p><strong>Puff</strong></p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="scale">
- <p><strong>Scale</strong></p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="shake">
- <p><strong>Shake</strong></p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="slideDown">
- <p><strong>Slide</strong> down</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="slideUp">
- <p><strong>Slide</strong> up</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="slideLeft">
- <p><strong>Slide</strong> left</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="slideRight">
- <p><strong>Slide</strong> right</p>
- </div>
- </li>
-
- <li>
- <div class="ui-state-default ui-corner-all" id="transfer">
- <p><strong>Transfer</strong> to 1st element</p>
- </div>
- </li>
-
-</ul>
-
-</body>
-</html>
diff --git a/demos/effect_types/blind.html b/demos/effect_types/blind.html
deleted file mode 100644
index 9027e43e1..000000000
--- a/demos/effect_types/blind.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 76f40f89b..000000000
--- a/demos/effect_types/bounce.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 44a497f11..000000000
--- a/demos/effect_types/clip.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 27bd68e47..000000000
--- a/demos/effect_types/default.html
+++ /dev/null
@@ -1,199 +0,0 @@
-<!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.2.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, click again to revert it.</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effect_types/drop.html b/demos/effect_types/drop.html
deleted file mode 100644
index ed8e5abee..000000000
--- a/demos/effect_types/drop.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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
deleted file mode 100644
index b0387c9e8..000000000
--- a/demos/effect_types/explode.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 58b302d1f..000000000
--- a/demos/effect_types/fold.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 28de580e6..000000000
--- a/demos/effect_types/highlight.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index c4c397728..000000000
--- a/demos/effect_types/index.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!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
deleted file mode 100644
index 78b1ccabd..000000000
--- a/demos/effect_types/puff.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 583d79061..000000000
--- a/demos/effect_types/pulsate.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index b889bba93..000000000
--- a/demos/effect_types/scale.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 7bc7534aa..000000000
--- a/demos/effect_types/shake.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 045c65062..000000000
--- a/demos/effect_types/size.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 1da994bac..000000000
--- a/demos/effect_types/slide.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 2dc386243..000000000
--- a/demos/effect_types/transfer.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!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.2.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_easings/default.html b/demos/effects_easings/default.html
deleted file mode 100644
index ebb2caa90..000000000
--- a/demos/effects_easings/default.html
+++ /dev/null
@@ -1,92 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Easings Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
- <script type="text/javascript" src="../../ui/effects.core.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- </style>
- <script type="text/javascript">
- function moveToHere(event, easing) {
- var area = $("#area");
- var target = $("#target");
- var offset = area.offset();
- var max = [area.width() - target.width(), area.height() - target.height()];
- var scroll = [document.documentElement.scrollLeft || document.body.scrollLeft,
- document.documentElement.scrollTop || document.body.scrollTop];
- target.animate({left: Math.max(0, Math.min((event.clientX + scroll[0]) -
- offset.left - (target.width() / 2), max[0])),
- top: Math.max(0, Math.min((event.clientY + scroll[1]) -
- offset.top - (target.height() / 2), max[1]))},
- 2000, easing);
- }
-
- $(function() {
- $("#area").click(function(event) {
- moveToHere(event, $("#easing").val());
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<p><select id="easing">
- <option value="linear">Linear easing</option>
- <option value="swing">Swing easing</option>
- <option value="easeInQuad">Quadratic ease in</option>
- <option value="easeOutQuad">Quadratic ease out</option>
- <option value="easeInOutQuad">Quadratic ease in out</option>
- <option value="easeInCubic">Cubic ease in</option>
- <option value="easeOutCubic">Cubic ease out</option>
- <option value="easeInOutCubic">Cubic ease in out</option>
- <option value="easeInQuart">Quartic ease in</option>
- <option value="easeOutQuart">Quartic ease out</option>
- <option value="easeInOutQuart">Quartic ease in out</option>
- <option value="easeInQuint">Quintic ease in</option>
- <option value="easeOutQuint">Quintic ease out</option>
- <option value="easeInOutQuint">Quintic ease in out</option>
- <option value="easeInSine">Sinusoidal ease in</option>
- <option value="easeOutSine">Sinusoidal ease out</option>
- <option value="easeInOutSine">Sinusoidal ease in out</option>
- <option value="easeInExpo">Exponential ease in</option>
- <option value="easeOutExpo">Exponential ease out</option>
- <option value="easeInOutExpo">Exponential ease in out</option>
- <option value="easeInCirc">Circular ease in</option>
- <option value="easeOutCirc">Circular ease out</option>
- <option value="easeInOutCirc">Circular ease in out</option>
- <option value="easeInElastic">Elastic ease in (decaying sine wave)</option>
- <option value="easeOutElastic">Elastic ease out</option>
- <option value="easeInOutElastic">Elastic ease in out</option>
- <option value="easeInBack">Back ease in (overshooting cubic)</option>
- <option value="easeOutBack">Back ease out</option>
- <option value="easeInOutBack">Back ease in out</option>
- <option value="easeInBounce">Bounce ease in (decaying parabolic)</option>
- <option value="easeOutBounce">Bounce ease out</option>
- <option value="easeInOutBounce">Bounce ease in out</option>
-</select>
-</p>
-<div id="area" style="position: relative; width: 400px; height: 300px; border: 1px solid #bbb;">
- <img id="target" src="images/target.png" style="position: absolute; left: 0px;"/>
-</div>
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>
-Easing is acceleration, a change in speed. Easings control how an animation progresses over time.<br/>
-An <b>ease-in</b> starts slow and then speeds up.<br/>
-An <b>ease-out</b> starts fast and then slows to a stop.<br/>
-An <b>ease-in-out</b> combines the two so that the first half is an ease-in and the second half is an ease-out.
-</p>
-<p>
-Click above to preview the selected easing.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_easings/images/target.png b/demos/effects_easings/images/target.png
deleted file mode 100644
index d5b6510b7..000000000
--- a/demos/effects_easings/images/target.png
+++ /dev/null
Binary files differ
diff --git a/demos/effects_easings/index.html b/demos/effects_easings/index.html
deleted file mode 100644
index dddbfc637..000000000
--- a/demos/effects_easings/index.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Easing Demos</title>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
-</head>
-<body>
-
-<div class="demos-nav">
- <h4>Easing Effects</h4>
- <ul>
- <li class="demo-config-on"><a href="default.html">Easings</a></li>
- </ul>
-</div>
-
-</body>
-</html>
diff --git a/demos/effects_feedback/default.html b/demos/effects_feedback/default.html
deleted file mode 100644
index 28de580e6..000000000
--- a/demos/effects_feedback/default.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 28de580e6..000000000
--- a/demos/effects_feedback/highlight.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 7ff062b42..000000000
--- a/demos/effects_feedback/index.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!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
deleted file mode 100644
index 583d79061..000000000
--- a/demos/effects_feedback/pulsate.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 2dc386243..000000000
--- a/demos/effects_feedback/transfer.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!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.2.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/bounce.html b/demos/effects_general/bounce.html
deleted file mode 100644
index fb1073f3f..000000000
--- a/demos/effects_general/bounce.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("bounce")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_general/default.html b/demos/effects_general/default.html
deleted file mode 100644
index fb1073f3f..000000000
--- a/demos/effects_general/default.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("bounce")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_general/highlight.html b/demos/effects_general/highlight.html
deleted file mode 100644
index 6833e5445..000000000
--- a/demos/effects_general/highlight.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("highlight")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_general/index.html b/demos/effects_general/index.html
deleted file mode 100644
index 578fa4d31..000000000
--- a/demos/effects_general/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!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="highlight.html">Highlight</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="transfer.html">Transfer</a></li>
- </ul>
-</div>
-
-</body>
-</html>
diff --git a/demos/effects_general/pulsate.html b/demos/effects_general/pulsate.html
deleted file mode 100644
index 1829bbdab..000000000
--- a/demos/effects_general/pulsate.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("pulsate")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_general/scale.html b/demos/effects_general/scale.html
deleted file mode 100644
index 9010eb1e0..000000000
--- a/demos/effects_general/scale.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("scale")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_general/shake.html b/demos/effects_general/shake.html
deleted file mode 100644
index 82a525d06..000000000
--- a/demos/effects_general/shake.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("shake")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_general/size.html b/demos/effects_general/size.html
deleted file mode 100644
index 7c3d58b6c..000000000
--- a/demos/effects_general/size.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("size")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_general/transfer.html b/demos/effects_general/transfer.html
deleted file mode 100644
index cb0674e33..000000000
--- a/demos/effects_general/transfer.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!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.2.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 above to preview the <code>.effect("transfer")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/demos/effects_movement/bounce.html b/demos/effects_movement/bounce.html
deleted file mode 100644
index 76f40f89b..000000000
--- a/demos/effects_movement/bounce.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 76f40f89b..000000000
--- a/demos/effects_movement/default.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 98cdfff5a..000000000
--- a/demos/effects_movement/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!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
deleted file mode 100644
index b889bba93..000000000
--- a/demos/effects_movement/scale.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 7bc7534aa..000000000
--- a/demos/effects_movement/shake.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 045c65062..000000000
--- a/demos/effects_movement/size.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!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.2.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
deleted file mode 100644
index 9027e43e1..000000000
--- a/demos/effects_showhide/blind.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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/effects_showhide/clip.html b/demos/effects_showhide/clip.html
deleted file mode 100644
index 44a497f11..000000000
--- a/demos/effects_showhide/clip.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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/effects_showhide/default.html b/demos/effects_showhide/default.html
deleted file mode 100644
index 9027e43e1..000000000
--- a/demos/effects_showhide/default.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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/effects_showhide/drop.html b/demos/effects_showhide/drop.html
deleted file mode 100644
index ed8e5abee..000000000
--- a/demos/effects_showhide/drop.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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/effects_showhide/explode.html b/demos/effects_showhide/explode.html
deleted file mode 100644
index 67b3c70eb..000000000
--- a/demos/effects_showhide/explode.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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; position: absolute; }
- #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/effects_showhide/fold.html b/demos/effects_showhide/fold.html
deleted file mode 100644
index 58b302d1f..000000000
--- a/demos/effects_showhide/fold.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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/effects_showhide/index.html b/demos/effects_showhide/index.html
deleted file mode 100644
index e8a30d483..000000000
--- a/demos/effects_showhide/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Show/Hide 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">Blind</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="puff.html">Puff</a></li>
- <li><a href="scale.html">Scale</a></li>
- <li><a href="slide.html">Slide</a></li>
- </ul>
-</div>
-
-</body>
-</html>
diff --git a/demos/effects_showhide/puff.html b/demos/effects_showhide/puff.html
deleted file mode 100644
index 78b1ccabd..000000000
--- a/demos/effects_showhide/puff.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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/effects_showhide/scale.html b/demos/effects_showhide/scale.html
deleted file mode 100644
index 640a14437..000000000
--- a/demos/effects_showhide/scale.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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; }
- #scale { width: 240px; height: 135px; padding: 0.4em; }
- #scale h3 { margin: 0; padding: 0.4em; text-align: center; }
- </style>
- <script type="text/javascript">
- $(function() {
- $(".toggler").click(function() {
- $("> :eq(0)", this).toggle("scale");
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div class="toggler">
- <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>
-
-</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/effects_showhide/slide.html b/demos/effects_showhide/slide.html
deleted file mode 100644
index 1da994bac..000000000
--- a/demos/effects_showhide/slide.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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.2.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>