aboutsummaryrefslogtreecommitdiffstats
path: root/demos/droppable/tolerance.html
blob: b0278c6ef2102298c825255f661581494409218b (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html lang="en">
<head>
	<title>jQuery UI Droppable - tolerance</title>
	<link type="text/css" href="../demos.css" rel="stylesheet" />
	<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
	<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
	<script type="text/javascript" src="../../ui/ui.core.js"></script>
	<script type="text/javascript" src="../../ui/ui.draggable.js"></script>
	<script type="text/javascript" src="../../ui/ui.droppable.js"></script>
	<style type="text/css">
	.ui-widget-header { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
	.ui-widget-content { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px; }
	</style>
	<script type="text/javascript">
	$(function() {

		$("#draggable").draggable();

		$("#droppable").droppable({
			activeClass: 'ui-state-hover',
			hoverClass: 'ui-state-active',
			drop: function(event, ui) {
				$(this).addClass('ui-state-highlight').find('p').html('Dropped!');
			}
		});

		$("#droppable-fit").droppable({
			activeClass: 'ui-state-hover',
			hoverClass: 'ui-state-active',
			tolerance: 'fit',
			drop: function(event, ui) {
				$(this).addClass('ui-state-highlight').find('p').html('Dropped!');
			}
		});

		$("#droppable-pointer").droppable({
			activeClass: 'ui-state-hover',
			hoverClass: 'ui-state-active',
			tolerance: 'pointer',
			drop: function(event, ui) {
				$(this).addClass('ui-state-highlight').find('p').html('Dropped!');
			}
		});

		$("#droppable-touch").droppable({
			activeClass: 'ui-state-hover',
			hoverClass: 'ui-state-active',
			tolerance: 'touch',
			drop: function(event, ui) {
				$(this).addClass('ui-state-highlight').find('p').html('Dropped!');
			}
		});

	});
	</script>
</head>
<body>

<div id="draggable" class="ui-widget-content">
	<p>Drag me to my target</p>
</div>

<br clear="both" />

<div id="droppable" class="ui-widget-header">
	<p>Default tolerance</p>
</div>

<div id="droppable-fit" class="ui-widget-header">
	<p>tolerance: 'fit'</p>
</div>

<div id="droppable-pointer" class="ui-widget-header">
	<p>tolerance: 'pointer'</p>
</div>

<div id="droppable-touch" class="ui-widget-header">
	<p>tolerance: 'touch'</p>
</div>

</body>
</html>