source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/demos/draggable/cursor-style.html@ 24245

Last change on this file since 24245 was 24245, checked in by sjb48, 13 years ago

Oran code for supporting format changes to document.

  • Property svn:executable set to *
File size: 2.0 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4 <title>jQuery UI Draggable - Cursor style</title>
5 <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
6 <script type="text/javascript" src="../../jquery-1.4.1.js"></script>
7 <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
8 <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
9 <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
10 <script type="text/javascript" src="../../ui/jquery.ui.draggable.js"></script>
11 <link type="text/css" href="../demos.css" rel="stylesheet" />
12 <style type="text/css">
13 #draggable, #draggable2, #draggable3 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
14 </style>
15 <script type="text/javascript">
16 $(function() {
17 $("#draggable").draggable({ cursorAt: { cursor: 'move', top: 56, left: 56 } });
18 $("#draggable2").draggable({ cursorAt: { cursor: 'crosshair', top: -5, left: -5 } });
19 $("#draggable3").draggable({ cursorAt: { bottom: 0 } });
20 });
21 </script>
22</head>
23<body>
24<div class="demo">
25
26<div id="draggable" class="ui-widget-content">
27 <p>I will always stick to the center (relative to the mouse)</p>
28</div>
29
30<div id="draggable2" class="ui-widget-content">
31 <p>My cursor is at left -5 and top -5</p>
32</div>
33
34<div id="draggable3" class="ui-widget-content">
35 <p>My cursor position is only controlled for the 'bottom' value</p>
36</div>
37
38</div><!-- End demo -->
39
40<div class="demo-description">
41
42<p>
43Position the cursor while dragging the object. By default the cursor appears in the center of the dragged object; use the <code>cursorAt</code> option to specify another location relative to the draggable (specify a pixel value from the top, right, bottom, and/or left). Customize the cursor's appearance by supplying the <code>cursor</code> option with a valid CSS cursor value: default, move, pointer, crosshair, etc.
44</p>
45
46</div><!-- End demo-description -->
47</body>
48</html>
Note: See TracBrowser for help on using the repository browser.