aboutsummaryrefslogtreecommitdiffstats
path: root/demos/effect
diff options
context:
space:
mode:
authorRafael Xavier de Souza <rxaviers@gmail.com>2013-05-08 09:39:27 -0300
committerRafael Xavier de Souza <rxaviers@gmail.com>2013-06-22 12:05:31 -0300
commitbfa553c42d001bf4356a1777d257e919a5fb5ea5 (patch)
tree14690353250dacc2363ffba1a772b51ee56614b0 /demos/effect
parent1f4f002cf7b4c3666e6e7e9f80414cf9b7b2c2b3 (diff)
downloadjquery-ui-bfa553c42d001bf4356a1777d257e919a5fb5ea5.tar.gz
jquery-ui-bfa553c42d001bf4356a1777d257e919a5fb5ea5.zip
Effects (core): Unite demos into the same single effect/ path
Diffstat (limited to 'demos/effect')
-rw-r--r--demos/effect/addClass.html45
-rw-r--r--demos/effect/animate.html55
-rw-r--r--demos/effect/hide.html95
-rw-r--r--demos/effect/index.html8
-rw-r--r--demos/effect/removeClass.html45
-rw-r--r--demos/effect/show.html97
-rw-r--r--demos/effect/switchClass.html40
-rw-r--r--demos/effect/toggle.html103
-rw-r--r--demos/effect/toggleClass.html39
9 files changed, 527 insertions, 0 deletions
diff --git a/demos/effect/addClass.html b/demos/effect/addClass.html
new file mode 100644
index 000000000..97a06a293
--- /dev/null
+++ b/demos/effect/addClass.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - addClass demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; position: relative; }
+ #button { padding: .5em 1em; text-decoration: none; }
+ #effect { width: 240px; padding: 1em; font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; }
+ .newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
+ </style>
+ <script>
+ $(function() {
+ $( "#button" ).click(function() {
+ $( "#effect" ).addClass( "newClass", 1000, callback );
+ return false;
+ });
+
+ function callback() {
+ setTimeout(function() {
+ $( "#effect" ).removeClass( "newClass" );
+ }, 1500 );
+ }
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" class="ui-corner-all">
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede.
+ </div>
+</div>
+
+<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
+
+<div class="demo-description">
+<p>This demo adds a class which animates: text-indent, letter-spacing, width, height, padding, margin, and font-size.</p>
+</div>
+</body>
+</html>
diff --git a/demos/effect/animate.html b/demos/effect/animate.html
new file mode 100644
index 000000000..4095cee73
--- /dev/null
+++ b/demos/effect/animate.html
@@ -0,0 +1,55 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - Animate demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; position: relative; }
+ #button { padding: .5em 1em; text-decoration: none; }
+ #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; background: #fff; }
+ #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script>
+ $(function() {
+ var state = true;
+ $( "#button" ).click(function() {
+ if ( state ) {
+ $( "#effect" ).animate({
+ backgroundColor: "#aa0000",
+ color: "#fff",
+ width: 500
+ }, 1000 );
+ } else {
+ $( "#effect" ).animate({
+ backgroundColor: "#fff",
+ color: "#000",
+ width: 240
+ }, 1000 );
+ }
+ state = !state;
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" 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">Toggle Effect</a>
+
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
+</div>
+</body>
+</html>
diff --git a/demos/effect/hide.html b/demos/effect/hide.html
new file mode 100644
index 000000000..fc8182ecb
--- /dev/null
+++ b/demos/effect/hide.html
@@ -0,0 +1,95 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - Hide Demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <script src="../../ui/jquery.ui.effect-blind.js"></script>
+ <script src="../../ui/jquery.ui.effect-bounce.js"></script>
+ <script src="../../ui/jquery.ui.effect-clip.js"></script>
+ <script src="../../ui/jquery.ui.effect-drop.js"></script>
+ <script src="../../ui/jquery.ui.effect-explode.js"></script>
+ <script src="../../ui/jquery.ui.effect-fold.js"></script>
+ <script src="../../ui/jquery.ui.effect-highlight.js"></script>
+ <script src="../../ui/jquery.ui.effect-pulsate.js"></script>
+ <script src="../../ui/jquery.ui.effect-scale.js"></script>
+ <script src="../../ui/jquery.ui.effect-shake.js"></script>
+ <script src="../../ui/jquery.ui.effect-slide.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; }
+ #button { padding: .5em 1em; text-decoration: none; }
+ #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; }
+ #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script>
+ $(function() {
+ // run the currently selected effect
+ function runEffect() {
+ // get effect type from
+ var selectedEffect = $( "#effectTypes" ).val();
+
+ // most effect types need no options passed by default
+ var options = {};
+ // some effects have required parameters
+ if ( selectedEffect === "scale" ) {
+ options = { percent: 0 };
+ } else if ( selectedEffect === "size" ) {
+ options = { to: { width: 200, height: 60 } };
+ }
+
+ // run the effect
+ $( "#effect" ).hide( selectedEffect, options, 1000, callback );
+ };
+
+ // callback function to bring a hidden box back
+ function callback() {
+ setTimeout(function() {
+ $( "#effect" ).removeAttr( "style" ).hide().fadeIn();
+ }, 1000 );
+ };
+
+ // set effect from select menu value
+ $( "#button" ).click(function() {
+ runEffect();
+ return false;
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" 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>
+
+<select name="effects" id="effectTypes">
+ <option value="blind">Blind</option>
+ <option value="bounce">Bounce</option>
+ <option value="clip">Clip</option>
+ <option value="drop">Drop</option>
+ <option value="explode">Explode</option>
+ <option value="fold">Fold</option>
+ <option value="highlight">Highlight</option>
+ <option value="puff">Puff</option>
+ <option value="pulsate">Pulsate</option>
+ <option value="scale">Scale</option>
+ <option value="shake">Shake</option>
+ <option value="size">Size</option>
+ <option value="slide">Slide</option>
+</select>
+
+<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
+
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
+</div>
+</body>
+</html>
diff --git a/demos/effect/index.html b/demos/effect/index.html
index 5da6bc612..dd1d229ac 100644
--- a/demos/effect/index.html
+++ b/demos/effect/index.html
@@ -9,6 +9,14 @@
<ul>
<li><a href="default.html">Effect showcase</a></li>
<li><a href="easing.html">Easing showcase</a></li>
+ <li><a href="addClass.html">.addClass()</a></li>
+ <li><a href="animate.html">.animate()</a></li>
+ <li><a href="hide.html">.hide()</a></li>
+ <li><a href="removeClass.html">.removeClass()</a></li>
+ <li><a href="show.html">.show()</a></li>
+ <li><a href="switchClass.html">.switchClass()</a></li>
+ <li><a href="toggle.html">.toggle()</a></li>
+ <li><a href="toggleClass.html">.toggleClass()</a></li>
</ul>
</body>
diff --git a/demos/effect/removeClass.html b/demos/effect/removeClass.html
new file mode 100644
index 000000000..74348c7a3
--- /dev/null
+++ b/demos/effect/removeClass.html
@@ -0,0 +1,45 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - removeClass Demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; position: relative; }
+ #button { padding: .5em 1em; text-decoration: none; }
+ #effect { position: relative; width: 240px; padding: 1em; letter-spacing: 0; font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; }
+ .newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
+ </style>
+ <script>
+ $(function() {
+ $( "#button" ).click(function() {
+ $( "#effect" ).removeClass( "newClass", 1000, callback );
+ return false;
+ });
+
+ function callback() {
+ setTimeout(function() {
+ $( "#effect" ).addClass( "newClass" );
+ }, 1500 );
+ }
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" class="newClass ui-corner-all">
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede.
+ </div>
+</div>
+
+<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
+
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
+</div>
+</body>
+</html>
diff --git a/demos/effect/show.html b/demos/effect/show.html
new file mode 100644
index 000000000..599a625f0
--- /dev/null
+++ b/demos/effect/show.html
@@ -0,0 +1,97 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - Show Demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <script src="../../ui/jquery.ui.effect-blind.js"></script>
+ <script src="../../ui/jquery.ui.effect-bounce.js"></script>
+ <script src="../../ui/jquery.ui.effect-clip.js"></script>
+ <script src="../../ui/jquery.ui.effect-drop.js"></script>
+ <script src="../../ui/jquery.ui.effect-explode.js"></script>
+ <script src="../../ui/jquery.ui.effect-fold.js"></script>
+ <script src="../../ui/jquery.ui.effect-highlight.js"></script>
+ <script src="../../ui/jquery.ui.effect-pulsate.js"></script>
+ <script src="../../ui/jquery.ui.effect-scale.js"></script>
+ <script src="../../ui/jquery.ui.effect-shake.js"></script>
+ <script src="../../ui/jquery.ui.effect-slide.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; }
+ #button { padding: .5em 1em; text-decoration: none; }
+ #effect { width: 240px; height: 135px; padding: 0.4em; position: relative; }
+ #effect h3 { margin: 0; padding: 0.4em; text-align: center; }
+ </style>
+ <script>
+ $(function() {
+ // run the currently selected effect
+ function runEffect() {
+ // get effect type from
+ var selectedEffect = $( "#effectTypes" ).val();
+
+ // most effect types need no options passed by default
+ var options = {};
+ // some effects have required parameters
+ if ( selectedEffect === "scale" ) {
+ options = { percent: 100 };
+ } else if ( selectedEffect === "size" ) {
+ options = { to: { width: 280, height: 185 } };
+ }
+
+ // run the effect
+ $( "#effect" ).show( selectedEffect, options, 500, callback );
+ };
+
+ //callback function to bring a hidden box back
+ function callback() {
+ setTimeout(function() {
+ $( "#effect:visible" ).removeAttr( "style" ).fadeOut();
+ }, 1000 );
+ };
+
+ // set effect from select menu value
+ $( "#button" ).click(function() {
+ runEffect();
+ return false;
+ });
+
+ $( "#effect" ).hide();
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" 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>
+
+<select name="effects" id="effectTypes">
+ <option value="blind">Blind</option>
+ <option value="bounce">Bounce</option>
+ <option value="clip">Clip</option>
+ <option value="drop">Drop</option>
+ <option value="explode">Explode</option>
+ <option value="fold">Fold</option>
+ <option value="highlight">Highlight</option>
+ <option value="puff">Puff</option>
+ <option value="pulsate">Pulsate</option>
+ <option value="scale">Scale</option>
+ <option value="shake">Shake</option>
+ <option value="size">Size</option>
+ <option value="slide">Slide</option>
+</select>
+
+<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
+
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
+</div>
+</body>
+</html>
diff --git a/demos/effect/switchClass.html b/demos/effect/switchClass.html
new file mode 100644
index 000000000..e4bd3b4f2
--- /dev/null
+++ b/demos/effect/switchClass.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - switchClass Demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; position: relative; }
+ #button { padding: .5em 1em; text-decoration: none; }
+ #effect { position: relative; }
+ .newClass { width: 240px; padding: 1em; letter-spacing: 0; font-size: 1.2em; margin: 0; }
+ .anotherNewClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
+ </style>
+ <script>
+ $(function() {
+ $( "#button" ).click(function(){
+ $( ".newClass" ).switchClass( "newClass", "anotherNewClass", 1000 );
+ $( ".anotherNewClass" ).switchClass( "anotherNewClass", "newClass", 1000 );
+ return false;
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" class="newClass ui-corner-all">
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede.
+ </div>
+</div>
+<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
+
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
+</div>
+</body>
+</html>
diff --git a/demos/effect/toggle.html b/demos/effect/toggle.html
new file mode 100644
index 000000000..354393917
--- /dev/null
+++ b/demos/effect/toggle.html
@@ -0,0 +1,103 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - Toggle Demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <script src="../../ui/jquery.ui.effect-blind.js"></script>
+ <script src="../../ui/jquery.ui.effect-bounce.js"></script>
+ <script src="../../ui/jquery.ui.effect-clip.js"></script>
+ <script src="../../ui/jquery.ui.effect-drop.js"></script>
+ <script src="../../ui/jquery.ui.effect-explode.js"></script>
+ <script src="../../ui/jquery.ui.effect-fold.js"></script>
+ <script src="../../ui/jquery.ui.effect-highlight.js"></script>
+ <script src="../../ui/jquery.ui.effect-pulsate.js"></script>
+ <script src="../../ui/jquery.ui.effect-scale.js"></script>
+ <script src="../../ui/jquery.ui.effect-shake.js"></script>
+ <script src="../../ui/jquery.ui.effect-slide.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler {
+ width: 500px;
+ height: 200px;
+ }
+ #button {
+ padding: .5em 1em;
+ text-decoration: none;
+ }
+ #effect {
+ position: relative;
+ width: 240px;
+ height: 135px;
+ padding: 0.4em;
+ }
+ #effect h3 {
+ margin: 0;
+ padding: 0.4em;
+ text-align: center;
+ }
+ </style>
+ <script>
+ $(function() {
+ // run the currently selected effect
+ function runEffect() {
+ // get effect type from
+ var selectedEffect = $( "#effectTypes" ).val();
+
+ // most effect types need no options passed by default
+ var options = {};
+ // some effects have required parameters
+ if ( selectedEffect === "scale" ) {
+ options = { percent: 0 };
+ } else if ( selectedEffect === "size" ) {
+ options = { to: { width: 200, height: 60 } };
+ }
+
+ // run the effect
+ $( "#effect" ).toggle( selectedEffect, options, 500 );
+ };
+
+ // set effect from select menu value
+ $( "#button" ).click(function() {
+ runEffect();
+ return false;
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" 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>
+
+<select name="effects" id="effectTypes">
+ <option value="blind">Blind</option>
+ <option value="bounce">Bounce</option>
+ <option value="clip">Clip</option>
+ <option value="drop">Drop</option>
+ <option value="explode">Explode</option>
+ <option value="fold">Fold</option>
+ <option value="highlight">Highlight</option>
+ <option value="puff">Puff</option>
+ <option value="pulsate">Pulsate</option>
+ <option value="scale">Scale</option>
+ <option value="shake">Shake</option>
+ <option value="size">Size</option>
+ <option value="slide">Slide</option>
+</select>
+
+<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
+
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
+</div>
+</body>
+</html>
diff --git a/demos/effect/toggleClass.html b/demos/effect/toggleClass.html
new file mode 100644
index 000000000..93ab10a1d
--- /dev/null
+++ b/demos/effect/toggleClass.html
@@ -0,0 +1,39 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Effects - toggleClass Demo</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.9.1.js"></script>
+ <script src="../../ui/jquery.ui.effect.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
+ .toggler { width: 500px; height: 200px; position: relative; }
+ #button { padding: .5em 1em; text-decoration: none; }
+ #effect {position: relative; width: 240px; padding: 1em; letter-spacing: 0; font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; }
+ .newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
+ </style>
+ <script>
+ $(function() {
+ $( "#button" ).click(function() {
+ $( "#effect" ).toggleClass( "newClass", 1000 );
+ return false;
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="toggler">
+ <div id="effect" class="newClass ui-corner-all">
+ Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede.
+ </div>
+</div>
+
+<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
+
+<div class="demo-description">
+<p>Click the button above to preview the effect.</p>
+</div>
+</body>
+</html>