aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sortable/tolerance.html
blob: f9ad4019617e8e3c983f18c9232f8e7695f6953e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="en">
<head>
	<title>jQuery UI Sortable - Drop tolerance (stickiness)</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">
	#sortable-tolerance-default, #sortable-tolerance-pointer { list-style-type: none; margin: 0; padding: 0; float: left; }
	#sortable-tolerance-default li, #sortable-tolerance-pointer li { margin: 3px; padding: 1px; float: left; width: 100px; height: 90px; font-size: 1.3em; text-align: center; }
	</style>
	<script type="text/javascript">
	$(function() {
		$("#sortable-tolerance-default").sortable({
			tolerance: 'default'
		});
		$("#sortable-tolerance-pointer").sortable({
			tolerance: 'pointer'
		});
	});
	</script>
</head>
<body>
<div class="demo">

<ul id="sortable-tolerance-default">
	<li class="ui-state-default"><div class="ui-icon ui-icon-arrow-4"></div>Default tolerance</li>
	<li class="ui-state-default"><div class="ui-icon ui-icon-arrow-4"></div>2</li>
	<li class="ui-state-default"><div class="ui-icon ui-icon-arrow-4"></div>3</li>
</ul>

<br style="clear:both;" />
<br style="clear:both;" />

<ul id="sortable-tolerance-pointer">
	<li class="ui-state-default"><div class="ui-icon ui-icon-arrowthick-1-ne"></div>Pointer tolerance</li>
	<li class="ui-state-default"><div class="ui-icon ui-icon-arrowthick-1-ne"></div>2</li>
	<li class="ui-state-default"><div class="ui-icon ui-icon-arrowthick-1-ne"></div>3</li>
</ul>

</div><!-- End demo -->

<div class="demo-description">

<p>Set the stickiness of drop areas using the <strong>tolerance</strong> option. Specify whether the drop should occur when either the pointer or intersection (mid-point of the sortable item) crosses the drop area's boundary. By default, the script guesses which option is best to use for each drag.</p>

</div><!-- End demo-description -->

</body>
</html>