html拖拽中的鼠标样式,Jquery UI 拖动(Draggable) - 光标样式_Jquery UI 中文网

拖动(Draggable) - 光标样式

当拖拽对象时定位光标。默认情况下,光标是出现在被拖拽对象的中间。使用 cursorAt 选项来指定相对于 draggable 的另一个位置(指定一个相对于 top、right、bottom、left 的像素值)。通过提供一个带有有效的 CSS 光标值的 cursor 选项,来自定义光标的外观。有效的 CSS 光标值包括:default、move、pointer、crosshair,等等。

源代码

jQuery UI 拖动(Draggable) - 光标样式

#draggable, #draggable2, #draggable3 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }

$(function() {

$( "#draggable" ).draggable({ cursor: "move", cursorAt: { top: 56, left: 56 } });

$( "#draggable2" ).draggable({ cursor: "crosshair", cursorAt: { top: -5, left: -5 } });

$( "#draggable3" ).draggable({ cursorAt: { bottom: 0 } });

});

我总是在中间(相对于鼠标)

我的光标是在 left -5 和 top -5

我的光标位置只控制了 'bottom' 值

你可能感兴趣的:(html拖拽中的鼠标样式)