0
|
1 <!DOCTYPE html>
|
|
2 <html lang="en">
|
|
3 <head>
|
|
4 <meta charset="utf-8">
|
|
5 <title>jQuery UI Sortable - Delay start</title>
|
|
6 <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
|
|
7 <script src="../../jquery-1.5.1.js"></script>
|
|
8 <script src="../../ui/jquery.ui.core.js"></script>
|
|
9 <script src="../../ui/jquery.ui.widget.js"></script>
|
|
10 <script src="../../ui/jquery.ui.mouse.js"></script>
|
|
11 <script src="../../ui/jquery.ui.sortable.js"></script>
|
|
12 <link rel="stylesheet" href="../demos.css">
|
|
13 <style>
|
|
14 #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; margin-bottom: 15px;zoom: 1; }
|
|
15 #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 95%; }
|
|
16 </style>
|
|
17 <script>
|
|
18 $(function() {
|
|
19 $( "#sortable1" ).sortable({
|
|
20 delay: 300
|
|
21 });
|
|
22
|
|
23 $( "#sortable2" ).sortable({
|
|
24 distance: 15
|
|
25 });
|
|
26
|
|
27 $( "li" ).disableSelection();
|
|
28 });
|
|
29 </script>
|
|
30 </head>
|
|
31 <body>
|
|
32 <div class="demo">
|
|
33
|
|
34 <h3 class="docs">Time delay of 300ms:</h3>
|
|
35
|
|
36 <ul id="sortable1">
|
|
37 <li class="ui-state-default">Item 1</li>
|
|
38 <li class="ui-state-default">Item 2</li>
|
|
39 <li class="ui-state-default">Item 3</li>
|
|
40 <li class="ui-state-default">Item 4</li>
|
|
41 </ul>
|
|
42
|
|
43 <h3 class="docs">Distance delay of 15px:</h3>
|
|
44
|
|
45 <ul id="sortable2">
|
|
46 <li class="ui-state-default">Item 1</li>
|
|
47 <li class="ui-state-default">Item 2</li>
|
|
48 <li class="ui-state-default">Item 3</li>
|
|
49 <li class="ui-state-default">Item 4</li>
|
|
50 </ul>
|
|
51
|
|
52 </div><!-- End demo -->
|
|
53
|
|
54
|
|
55
|
|
56 <div class="demo-description">
|
|
57 <p>
|
|
58 Prevent accidental sorting either by delay (time) or distance. Set a number of
|
|
59 milliseconds the element needs to be dragged before sorting starts
|
|
60 with the <code>delay</code> option. Set a distance in pixels the element
|
|
61 needs to be dragged before sorting starts with the <code>distance</code>
|
|
62 option.
|
|
63 </p>
|
|
64 </div><!-- End demo-description -->
|
|
65
|
|
66 </body>
|
|
67 </html>
|