mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
57 lines
1.6 KiB
HTML
57 lines
1.6 KiB
HTML
|
<!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>
|