jQuery UI的Draggable cursorAt选项

  • Post category:jquery

以下是关于 jQuery UI 的 Draggable cursorAt 选项的详细攻略:

jQuery UI Draggable cursorAt 选项

cursorAt 选项用于设置鼠标指针在拖动元素时的偏移量。可以使用该选项来设置鼠标指针的偏移量,例如“{ top: 10, left: 20 }”等。

语法

$(selector).draggable({
  cursorAt: { top: y, left: x }
});

参数

  • top: 鼠标指针在拖动元素时的垂直偏移量。
  • left: 鼠标指针在拖动元素时的水平偏移量。

示例一:设置鼠标指针的偏移量

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI Draggable cursorAt 选项示例</title>
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
  <style>
    #draggable {
      width: 150px;
      height: 150px;
      background-color: #ccc;
      cursor: move;
    }
  </style>
</head>
<body>
  <div id="draggable" class="ui-widget-content">
    <p>Drag me around</p>
  </div>
  <script>
    $( "#draggable" ).draggable({
      cursorAt: { top: 10, left: 20 }
    });
  </script>
</body>
</html>

这将创建一个可拖动的元素,并使用 cursorAt 选项将鼠标指针的偏移量更改为“{ top: 10, left: 20 }”。

示例二:使用函数设置鼠标指针的偏移量

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI Draggable cursorAt 选项示例</title>
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
  <style>
    #draggable {
      width: 150px;
      height: 150px;
      background-color: #ccc;
      cursor: move;
    }
  </style>
</head>
<body>
  <div id="draggable" class="ui-widget-content">
    <p>Drag me around</p>
  </div>
  <script>
    $( "#draggable" ).draggable({
      cursorAt: function() {
        return { top: 10, left: 20 };
      }
    });
  </script>
</body>
</html>

这将创建一个可拖动的元素,并使用 cursorAt选项的函数形式将鼠标指针的偏移量更改为自定义的偏移量。

总结:

cursorAt 选项用于设置鼠标指针在拖动元素时的偏移量。可以使用该选项来设置鼠标指针的偏移量,例如“{ top: 10, left: 20 }”等。可以使用 $(selector).draggable({ cursorAt: { top: y, left: x } }) 法来设置鼠标指针的偏移量。也可以使用函数形式设置自定义的偏移量。