aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sortable/delay-start.html
diff options
context:
space:
mode:
authorMaggie Costello Wachs <fg.maggie@gmail.com>2009-01-16 22:51:08 +0000
committerMaggie Costello Wachs <fg.maggie@gmail.com>2009-01-16 22:51:08 +0000
commitc3591d49d67b97ca81faabeb5f24558f02d2ed55 (patch)
treed0d0813cb31b66f5d6b2baeb34fefe975e3d632a /demos/sortable/delay-start.html
parent1b7fa8ca13e218d8a2691e3649dab502a1118256 (diff)
downloadjquery-ui-c3591d49d67b97ca81faabeb5f24558f02d2ed55.tar.gz
jquery-ui-c3591d49d67b97ca81faabeb5f24558f02d2ed55.zip
reorganized/renamed sortable demos
Diffstat (limited to 'demos/sortable/delay-start.html')
-rw-r--r--demos/sortable/delay-start.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/demos/sortable/delay-start.html b/demos/sortable/delay-start.html
new file mode 100644
index 000000000..9952c830e
--- /dev/null
+++ b/demos/sortable/delay-start.html
@@ -0,0 +1,56 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Sortable - 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.sortable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ .demo ul { list-style-type: none; margin: 0; padding: 0; margin-bottom: 15px; }
+ .demo li { margin: 5px; padding: 5px; font-size: 1.2em; }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#sortable").sortable({
+ delay: 1000
+ });
+
+ $("#sortable2").sortable({
+ distance: 50
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<h3 class="docs">Time delay of 1000ms:</h3>
+
+<ul id="sortable">
+ <li class="ui-state-default">Item 1</li>
+ <li class="ui-state-default">Item 2</li>
+ <li class="ui-state-default">Item 3</li>
+ <li class="ui-state-default">Item 4</li>
+</ul>
+
+<h3>Distance delay of 50px:</h3>
+
+<ul id="sortable2">
+ <li class="ui-state-default">Item 1</li>
+ <li class="ui-state-default">Item 2</li>
+ <li class="ui-state-default">Item 3</li>
+ <li class="ui-state-default">Item 4</li>
+</ul>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Delay the start of sorting for a number of milliseconds with the <strong>delay</strong> option; prevent sorting 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>