实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
AخA
 
1
<!doctype html>
2
<html lang="en">
3
<head>
4
  <meta charset="utf-8">
5
  <title>jQuery UI 拖动(Draggable) - 视觉反馈</title>
6
  <link rel="stylesheet" href="//apps.bdimg.com/libs/jqueryui/1.10.4/css/jquery-ui.min.css">
7
  <script src="//apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
8
  <script src="//apps.bdimg.com/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
9
  <link rel="stylesheet" href="jqueryui/style.css">
10
  <style>
11
  #draggable, #draggable2, #draggable3, #set div { width: 90px; height: 90px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
12
  #draggable, #draggable2, #draggable3 { margin-bottom:20px; }
13
  #set { clear:both; float:left; width: 368px; height: 120px; }
14
  p { clear:both; margin:0; padding:1em 0; }
15
  </style>
16
  <script>
17
  $(function() {
18
    $( "#draggable" ).draggable({ helper: "original" });
19
    $( "#draggable2" ).draggable({ opacity: 0.7, helper: "clone" });
20
    $( "#draggable3" ).draggable({
21
      cursor: "move",
22
      cursorAt: { top: -12, left: -20 },