aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable/distance.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2008-12-29 03:07:22 +0000
committerScott González <scott.gonzalez@gmail.com>2008-12-29 03:07:22 +0000
commitc0de47d1f64744e96ca08aed891f1ab27fed4831 (patch)
tree72f3a65b6916c4fe7a63475f7d25893b3e7ab7be /demos/resizable/distance.html
parent7596969687dd414f3e17db1cd95afd90cfdf30a9 (diff)
downloadjquery-ui-c0de47d1f64744e96ca08aed891f1ab27fed4831.tar.gz
jquery-ui-c0de47d1f64744e96ca08aed891f1ab27fed4831.zip
Resizable: Added demos for alsoResize, animate, aspectRation, containment, delay, distance, ghost, grid, max height/width, min height/width.
Diffstat (limited to 'demos/resizable/distance.html')
-rw-r--r--demos/resizable/distance.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/demos/resizable/distance.html b/demos/resizable/distance.html
new file mode 100644
index 000000000..2975ae5c2
--- /dev/null
+++ b/demos/resizable/distance.html
@@ -0,0 +1,27 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Resizable - Distance Demo</title>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <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/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
+ <script type="text/javascript">
+ $(function() {
+ $("#resizable").resizable({
+ distance: 40
+ });
+ });
+ </script>
+</head>
+<body>
+
+<p>You must drag the div at least 40 pixels before it will resize.</p>
+
+<div id="resizable" style="width: 200px; height: 200px; background-color: #f00;">
+ <p>Resize me</p>
+</div>
+
+</body>
+</html>