jQuery UI的Draggable cursor选项

  • Post category:jquery

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

jQuery UI Draggable cursor 选项

cursor 选项用于设置拖动元素时鼠标指针的样式。可以使用该选项来设置鼠标指针样式,例如“move”、“pointer”、“crosshair”等。

语法

$(selector).draggable({
  cursor: "cursor-style"
});

参数

  • cursor-style: 鼠标指针的样式。

示例一:设置鼠标指针的样式

<!DOCTYPE html>
<html>
<head>
  <title>jQuery UI Draggable cursor 选项示例</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({
      cursor: "crosshair"
    });
  </script>
</body>
</html>

这将创建一个可拖动的元素,并使用 cursor 选项将鼠标指针的样式更改为“crosshair”。

示例二:使用函数设置鼠标指针的样式

<!DOCTYPE html>
<html>
<head>
 <title>jQuery UI Draggable cursor 选项示例</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"></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({
      cursor: function() {
        return "url('https://www.example.com/cursor.png'), auto";
      }
    });
  </script>
</body>
</html>

这将创建一个可拖动的元素,并使用 cursor 选项的函数形式将鼠标指针的样式更改为自定义的光标图像。

总结:

cursor 选项用于设置拖动元素时鼠标指针的样式。可以使用该选项来设置鼠标指针样式,例如“move”、“pointer”、“crosshair”等。可以使用 $(selector).draggable({ cursor: “cursor-style” }) 法来设置鼠标指针的样式。也可以使用函数形式来设置自定义的光标图像。