aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorMaggie Costello Wachs <fg.maggie@gmail.com>2009-01-16 21:47:11 +0000
committerMaggie Costello Wachs <fg.maggie@gmail.com>2009-01-16 21:47:11 +0000
commit3a65a632b680f2ac08bba93d90579fd8e842c53a (patch)
treec8169eedea504fa3b4d92452c345bf52d366f5f7 /demos
parent479eff164e11b3e779b72c898d9bdb21ebfae116 (diff)
downloadjquery-ui-3a65a632b680f2ac08bba93d90579fd8e842c53a.tar.gz
jquery-ui-3a65a632b680f2ac08bba93d90579fd8e842c53a.zip
reorganized/renamed resizable demos
Diffstat (limited to 'demos')
-rw-r--r--demos/resizable/animate.html6
-rw-r--r--demos/resizable/aspect-ratio.html37
-rw-r--r--demos/resizable/constrain-area.html42
-rw-r--r--demos/resizable/default.html6
-rw-r--r--demos/resizable/delay-start.html49
-rw-r--r--demos/resizable/index.html18
-rw-r--r--demos/resizable/max-min.html40
-rw-r--r--demos/resizable/snap-to-grid.html37
-rw-r--r--demos/resizable/synchronous-resize.html44
-rw-r--r--demos/resizable/visual-feedback.html38
10 files changed, 299 insertions, 18 deletions
diff --git a/demos/resizable/animate.html b/demos/resizable/animate.html
index f5b6383ba..93bdad2a6 100644
--- a/demos/resizable/animate.html
+++ b/demos/resizable/animate.html
@@ -1,7 +1,7 @@
<!doctype html>
<html lang="en">
<head>
- <title>jQuery UI Resizable - Animate Demo</title>
+ <title>jQuery UI Resizable - Animate</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.3.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -31,9 +31,7 @@
<div class="demo-description">
-<p>
-<!-- Add description here -->
-</p>
+<p>Animate the resize action using the <strong>animate</strong> option (boolean). When this option is set to true, drag the outline to the desired location; the element animates to that size on drag stop.</p>
</div><!-- End demo-description -->
</body>
diff --git a/demos/resizable/aspect-ratio.html b/demos/resizable/aspect-ratio.html
new file mode 100644
index 000000000..aa97f4191
--- /dev/null
+++ b/demos/resizable/aspect-ratio.html
@@ -0,0 +1,37 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Preserve aspect ratio</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ #resizable { width: 160px; height: 90px; padding: 0.5em; }
+ #resizable h3 { text-align: center; margin: 0; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ aspectRatio: 16/9
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<div id="resizable" class="ui-widget-content">
+ <h3 class="ui-widget-header">Preserve aspect ratio</h3>
+</div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Maintain the existing aspect ratio or set a new one to constrain the proportions on resize. Set the <strong>aspectRatio</strong> option to true, and optionally pass in a new ratio (i.e., 4/3)</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>
diff --git a/demos/resizable/constrain-area.html b/demos/resizable/constrain-area.html
new file mode 100644
index 000000000..b27fc598b
--- /dev/null
+++ b/demos/resizable/constrain-area.html
@@ -0,0 +1,42 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Constrain resize area</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ #container { width: 300px; height: 300px; }
+ #container h3 { text-align: center; margin: 0; margin-bottom: 10px; }
+ #resizable { background-position: top left; width: 150px; height: 150px; }
+ #resizable, #container { padding: 0.5em; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ containment: '#container'
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<div id="container" class="ui-widget-content">
+ <h3 class="ui-widget-header">Containment</h3>
+ <div id="resizable" class="ui-state-active">
+ <h3 class="ui-widget-header">Resizable</h3>
+ </div>
+</div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Define the boundaries of the resizable area. Use the <strong>containment</strong> option to specify a parent DOM element or a jQuery selector, like 'document.'</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>
diff --git a/demos/resizable/default.html b/demos/resizable/default.html
index f00fa39a5..6dad88eef 100644
--- a/demos/resizable/default.html
+++ b/demos/resizable/default.html
@@ -1,7 +1,7 @@
<!doctype html>
<html lang="en">
<head>
- <title>jQuery UI Resizable - Default Demo</title>
+ <title>jQuery UI Resizable - Default functionality</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.3.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -28,9 +28,7 @@
<div class="demo-description">
-<p>
-<!-- Add description here -->
-</p>
+<p>Enable any DOM element to be resizable. With the cursor grab the right or bottom border and drag to the desired width or height.</p>
</div><!-- End demo-description -->
</body>
diff --git a/demos/resizable/delay-start.html b/demos/resizable/delay-start.html
new file mode 100644
index 000000000..49fc45c46
--- /dev/null
+++ b/demos/resizable/delay-start.html
@@ -0,0 +1,49 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Delay start</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ #resizable, #resizable2 { width: 150px; height: 150px; padding: 0.5em; }
+ #resizable h3, #resizable2 h3 { text-align: center; margin: 0; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ delay: 1000
+ });
+
+ $("#resizable2").resizable({
+ distance: 40
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<h3 class="docs">Time delay (ms):</h3>
+<div id="resizable" class="ui-widget-content">
+ <h3 class="ui-widget-header">Time</h3>
+</div>
+
+<h3 class="docs">Distance delay (px):</h3>
+<div id="resizable2" class="ui-widget-content">
+ <h3 class="ui-widget-header">Distance</h3>
+</div>
+
+<!-- ADD DISTANCE DEMO -->
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Delay the start of resizng for a number of milliseconds with the <strong>delay</strong> option; prevent resizing until the cursor is held down and dragged a specifed number of pixels with the <strong>distance</strong> option.</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>
diff --git a/demos/resizable/index.html b/demos/resizable/index.html
index e6221c80f..561b5bf87 100644
--- a/demos/resizable/index.html
+++ b/demos/resizable/index.html
@@ -9,17 +9,15 @@
<div class="demos-nav">
<h4>Examples</h4>
<ul>
- <li class="demo-config-on"><a href="default.html">Default Resizable</a></li>
- <li><a href="alsoresize.html">Also resize</a></li>
+ <li class="demo-config-on"><a href="default.html">Default functionality</a></li>
+ <li><a href="aspect-ratio.html">Preserve aspect ratio</a></li>
+ <li><a href="max-min.html">Maximum / minimum size</a></li>
+ <li><a href="constrain-area.html">Constrain resize area</a></li>
+ <li><a href="delay-start.html">Delay start</a></li>
+ <li><a href="snap-to-grid.html">Snap to grid</a></li>
+ <li><a href="visual-feedback.html">Visual feedback</a></li>
+ <li><a href="synchronous-resize.html">Synchronous resize</a></li>
<li><a href="animate.html">Animate</a></li>
- <li><a href="aspectratio.html">Aspect ratio</a></li>
- <li><a href="containment.html">Containment</a></li>
- <li><a href="delay.html">Delay</a></li>
- <li><a href="distance.html">Distance</a></li>
- <li><a href="ghost.html">Ghost</a></li>
- <li><a href="grid.html">Grid</a></li>
- <li><a href="max.html">Max Height / Width</a></li>
- <li><a href="min.html">Min Height / Width</a></li>
</ul>
</div>
diff --git a/demos/resizable/max-min.html b/demos/resizable/max-min.html
new file mode 100644
index 000000000..9008e8997
--- /dev/null
+++ b/demos/resizable/max-min.html
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Maximum / minimum size</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ #resizable { width: 200px; height: 150px; padding: 5px; }
+ #resizable h3 { text-align: center; margin: 0; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ maxHeight: 250,
+ maxWidth: 350,
+ minHeight: 150,
+ minWidth: 200
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<div id="resizable" class="ui-widget-content">
+ <h3 class="ui-widget-header">Resize larger / smaller</h3>
+</div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Limit the resizable element to a maximum or minimum height or width using the <strong>maxHeight</strong>, <strong>maxWidth</strong>, <strong>minHeight</strong>, and <strong>minWidth</strong> options.</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>
diff --git a/demos/resizable/snap-to-grid.html b/demos/resizable/snap-to-grid.html
new file mode 100644
index 000000000..4a6a19663
--- /dev/null
+++ b/demos/resizable/snap-to-grid.html
@@ -0,0 +1,37 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Snap to grid</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ #resizable { width: 150px; height: 150px; padding: 0.5em; }
+ #resizable h3 { text-align: center; margin: 0; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ grid: 50
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<div id="resizable" class="ui-widget-content">
+ <h3 class="ui-widget-header">Grid</h3>
+</div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Snap the resizable element to a grid. Set the dimensions of grid cells (height and width in pixels) with the <strong>grid</strong> option.</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>
diff --git a/demos/resizable/synchronous-resize.html b/demos/resizable/synchronous-resize.html
new file mode 100644
index 000000000..14f6a65c9
--- /dev/null
+++ b/demos/resizable/synchronous-resize.html
@@ -0,0 +1,44 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Synchronous resize</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ #resizable { background-position: top left; }
+ #resizable, #also { width: 150px; height: 120px; padding: 0.5em; }
+ #resizable h3, #also h3 { text-align: center; margin: 0; }
+ #also { margin-top: 1em; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ alsoResize: '#also'
+ });
+ $("#also").resizable();
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<div id="resizable" class="ui-widget-header">
+ <h3 class="ui-state-active">Resize</h3>
+</div>
+
+<div id="also" class="ui-widget-content">
+ <h3 class="ui-widget-header">will also resize</h3>
+</div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Resize multiple elements simultaneously by clicking and dragging the sides of one. Pass a shared selector into the <strong>alsoResize</strong> option.</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>
diff --git a/demos/resizable/visual-feedback.html b/demos/resizable/visual-feedback.html
new file mode 100644
index 000000000..504c5de57
--- /dev/null
+++ b/demos/resizable/visual-feedback.html
@@ -0,0 +1,38 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Visual feedback</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ #resizable { width: 150px; height: 150px; padding: 0.5em; }
+ #resizable h3 { text-align: center; margin: 0; }
+ .ui-resizable-ghost { border: 1px dotted gray; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ ghost: true
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<div id="resizable" class="ui-widget-content">
+ <h3 class="ui-widget-header">Ghost</h3>
+</div>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Instead of showing the actual element during resize, set the <strong>ghost</strong> option to true to show a semi-transparent part of the element.</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>