diff options
Diffstat (limited to 'demos/effects_showhide')
-rw-r--r-- | demos/effects_showhide/blind.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/clip.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/default.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/drop.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/explode.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/fold.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/index.html | 48 | ||||
-rw-r--r-- | demos/effects_showhide/puff.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/scale.html | 94 | ||||
-rw-r--r-- | demos/effects_showhide/slide.html | 94 |
10 files changed, 447 insertions, 447 deletions
diff --git a/demos/effects_showhide/blind.html b/demos/effects_showhide/blind.html index eb176ae57..a8e587f3a 100644 --- a/demos/effects_showhide/blind.html +++ b/demos/effects_showhide/blind.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Blind Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("blind")</code> effect. You can click again to see the <code>.show("blind")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Blind Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("blind")</code> effect. You can click again to see the <code>.show("blind")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/clip.html b/demos/effects_showhide/clip.html index ee0cfb420..3e39ce09d 100644 --- a/demos/effects_showhide/clip.html +++ b/demos/effects_showhide/clip.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Clip Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("clip")</code> effect. You can click again to see the <code>.show("clip")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Clip Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("clip")</code> effect. You can click again to see the <code>.show("clip")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/default.html b/demos/effects_showhide/default.html index eb176ae57..a8e587f3a 100644 --- a/demos/effects_showhide/default.html +++ b/demos/effects_showhide/default.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Blind Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("blind")</code> effect. You can click again to see the <code>.show("blind")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Blind Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("blind")</code> effect. You can click again to see the <code>.show("blind")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/drop.html b/demos/effects_showhide/drop.html index dbb259405..ab5ffc981 100644 --- a/demos/effects_showhide/drop.html +++ b/demos/effects_showhide/drop.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Drop Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("drop")</code> effect. You can click again to see the <code>.show("drop")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Drop Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("drop")</code> effect. You can click again to see the <code>.show("drop")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/explode.html b/demos/effects_showhide/explode.html index 5b3677645..9da3b602c 100644 --- a/demos/effects_showhide/explode.html +++ b/demos/effects_showhide/explode.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Explode Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("explode")</code> effect. You can click again to see the <code>.show("explode")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Explode Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("explode")</code> effect. You can click again to see the <code>.show("explode")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/fold.html b/demos/effects_showhide/fold.html index 0c8ac7574..b2aeef405 100644 --- a/demos/effects_showhide/fold.html +++ b/demos/effects_showhide/fold.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Fold Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("fold")</code> effect. You can click again to see the <code>.show("fold")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Fold Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("fold")</code> effect. You can click again to see the <code>.show("fold")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/index.html b/demos/effects_showhide/index.html index 3d70b4f89..2fd0eeadc 100644 --- a/demos/effects_showhide/index.html +++ b/demos/effects_showhide/index.html @@ -1,24 +1,24 @@ -<!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>Show/Hide and Toggle Effects</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>
+<!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>Show/Hide and Toggle Effects</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 index 62f217b7e..9651d3bb4 100644 --- a/demos/effects_showhide/puff.html +++ b/demos/effects_showhide/puff.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Puff Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("puff")</code> effect. You can click again to see the <code>.show("puff")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Puff Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("puff")</code> effect. You can click again to see the <code>.show("puff")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/scale.html b/demos/effects_showhide/scale.html index 4a7d51e82..97eff931d 100644 --- a/demos/effects_showhide/scale.html +++ b/demos/effects_showhide/scale.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Scale Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("scale")</code> effect. You can click again to see the <code>.show("scale")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Scale Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("scale")</code> effect. You can click again to see the <code>.show("scale")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/effects_showhide/slide.html b/demos/effects_showhide/slide.html index ded93bf1a..ebce2f92a 100644 --- a/demos/effects_showhide/slide.html +++ b/demos/effects_showhide/slide.html @@ -1,47 +1,47 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Effects - Slide Demo</title>
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("slide")</code> effect. You can click again to see the <code>.show("slide")</code> effect.
-</p>
-
-</div><!-- End demo-description -->
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Effects - Slide Demo</title> + <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="../../jquery-1.2.6.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 above to preview the <code>.hide("slide")</code> effect. You can click again to see the <code>.show("slide")</code> effect. +</p> + +</div><!-- End demo-description --> + +</body> +</html> |