用法:
cursorAt
类型:Object
默认:
false
设置拖动助手相对于鼠标光标的偏移量。坐标可以使用一个或两个键的组合作为散列给出:
{ top, left, right, bottom }
。代码示例:
使用指定的cursorAt
选项初始化可拖动对象:
$( ".selector" ).draggable({
cursorAt: { left: 5 }
});
初始化后获取或设置cursorAt
选项:
// Getter
var cursorAt = $( ".selector" ).draggable( "option", "cursorAt" );
// Setter
$( ".selector" ).draggable( "option", "cursorAt", { left: 5 } );
相关用法
- JQuery UI Draggable cursor用法及代码示例
- JQuery UI Draggable containment用法及代码示例
- JQuery UI Draggable connectToSortable用法及代码示例
- JQuery UI Draggable classes用法及代码示例
- JQuery UI Draggable cancel用法及代码示例
- JQuery UI Draggable create( event, ui )用法及代码示例
- JQuery UI Draggable snapMode用法及代码示例
- JQuery UI Draggable snap用法及代码示例
- JQuery UI Draggable start( event, ui )用法及代码示例
- JQuery UI Draggable snapTolerance用法及代码示例
- JQuery UI Draggable option用法及代码示例
- JQuery UI Draggable disabled用法及代码示例
- JQuery UI Draggable stop( event, ui )用法及代码示例
- JQuery UI Draggable revertDuration用法及代码示例
- JQuery UI Draggable iframeFix用法及代码示例
- JQuery UI Draggable enable用法及代码示例
- JQuery UI Draggable drag( event, ui )用法及代码示例
- JQuery UI Draggable scrollSensitivity用法及代码示例
- JQuery UI Draggable axis用法及代码示例
- JQuery UI Draggable scrollSpeed用法及代码示例
- JQuery UI Draggable appendTo用法及代码示例
- JQuery UI Draggable zIndex用法及代码示例
- JQuery UI Draggable destroy用法及代码示例
- JQuery UI Draggable scroll用法及代码示例
- JQuery UI Draggable addClasses用法及代码示例
注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Draggable cursorAt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。