jquery-ui/demos/sortable/delay-start.html

62 lines
1.7 KiB
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
2009-01-16 22:51:08 +00:00
<html lang="en">
<head>
2010-10-13 19:23:42 +00:00
<meta charset="utf-8">
2009-01-16 22:51:08 +00:00
<title>jQuery UI Sortable - Delay start</title>
2010-10-13 19:23:42 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2013-01-17 06:28:41 +00:00
<script src="../../jquery-1.9.0.js"></script>
2010-10-13 19:23:42 +00:00
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.mouse.js"></script>
<script src="../../ui/jquery.ui.sortable.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
2009-02-18 14:40:25 +00:00
#sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; margin-bottom: 15px;zoom: 1; }
#sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 95%; }
2009-01-16 22:51:08 +00:00
</style>
2010-10-13 19:23:42 +00:00
<script>
2009-01-16 22:51:08 +00:00
$(function() {
2010-10-13 19:23:42 +00:00
$( "#sortable1" ).sortable({
delay: 300
2009-01-16 22:51:08 +00:00
});
2012-09-10 15:33:46 +00:00
2010-10-13 19:23:42 +00:00
$( "#sortable2" ).sortable({
distance: 15
2009-01-16 22:51:08 +00:00
});
2010-10-13 19:23:42 +00:00
$( "li" ).disableSelection();
2009-01-16 22:51:08 +00:00
});
</script>
</head>
<body>
<h3 class="docs">Time delay of 300ms:</h3>
2009-01-16 22:51:08 +00:00
<ul id="sortable1">
2009-01-16 22:51:08 +00:00
<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 class="docs">Distance delay of 15px:</h3>
2009-01-16 22:51:08 +00:00
<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>
2010-10-13 19:23:42 +00:00
<div class="demo-description">
<p>
Prevent accidental sorting either by delay (time) or distance. Set a number of
milliseconds the element needs to be dragged before sorting starts
with the <code>delay</code> option. Set a distance in pixels the element
needs to be dragged before sorting starts with the <code>distance</code>
option.
</p>
2012-09-10 15:33:46 +00:00
</div>
2009-01-16 22:51:08 +00:00
</body>
</html>