aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sortable/delay-start.html
diff options
context:
space:
mode:
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>