用法:
cursorAt
類型:Object
默認:
false
移動排序元素或助手,使光標始終顯示為從同一位置拖動。坐標可以使用一個或兩個鍵的組合作為散列給出:
{ top, left, right, bottom }
。代碼示例:
使用指定的 cursorAt
選項初始化可排序:
$( ".selector" ).sortable({
cursorAt: { left: 5 }
});
初始化後獲取或設置cursorAt
選項:
// Getter
var cursorAt = $( ".selector" ).sortable( "option", "cursorAt" );
// Setter
$( ".selector" ).sortable( "option", "cursorAt", { left: 5 } );
相關用法
- JQuery UI Sortable cursor用法及代碼示例
- JQuery UI Sortable connectWith用法及代碼示例
- JQuery UI Sortable containment用法及代碼示例
- JQuery UI Sortable cancel用法及代碼示例
- JQuery UI Sortable change( event, ui )用法及代碼示例
- JQuery UI Sortable classes用法及代碼示例
- JQuery UI Sortable create( event, ui )用法及代碼示例
- JQuery UI Sortable scrollSpeed用法及代碼示例
- JQuery UI Sortable option用法及代碼示例
- JQuery UI Sortable update( event, ui )用法及代碼示例
- JQuery UI Sortable widget用法及代碼示例
- JQuery UI Sortable instance用法及代碼示例
- JQuery UI Sortable handle用法及代碼示例
- JQuery UI Sortable tolerance用法及代碼示例
- JQuery UI Sortable axis用法及代碼示例
- JQuery UI Sortable stop( event, ui )用法及代碼示例
- JQuery UI Sortable opacity用法及代碼示例
- JQuery UI Sortable out( event, ui )用法及代碼示例
- JQuery UI Sortable forcePlaceholderSize用法及代碼示例
- JQuery UI Sortable refresh用法及代碼示例
- JQuery UI Sortable disable用法及代碼示例
- JQuery UI Sortable scroll用法及代碼示例
- JQuery UI Sortable distance用法及代碼示例
- JQuery UI Sortable sort( event, ui )用法及代碼示例
- JQuery UI Sortable scrollSensitivity用法及代碼示例
注:本文由純淨天空篩選整理自jqueryui.com大神的英文原創作品 Sortable cursorAt。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。