用法:
cursor
类型:String
默认:
"auto"
拖动操作期间的 CSS 光标。
代码示例:
使用指定的cursor
选项初始化可拖动对象:
$( ".selector" ).draggable({
cursor: "crosshair"
});
初始化后获取或设置cursor
选项:
// Getter
var cursor = $( ".selector" ).draggable( "option", "cursor" );
// Setter
$( ".selector" ).draggable( "option", "cursor", "crosshair" );
相关用法
- JQuery UI Draggable cursorAt用法及代码示例
- 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 cursor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。