用法:
scrollSensitivity
类型:Number
默认:
20
距视口边的距离(以像素为单位),之后视口应滚动。距离是相对于指针的,而不是可拖动的。如果
scroll
选项是 false
则忽略。代码示例:
使用指定的scrollSensitivity
选项初始化可拖动对象:
$( ".selector" ).draggable({
scrollSensitivity: 100
});
初始化后获取或设置scrollSensitivity
选项:
// Getter
var scrollSensitivity = $( ".selector" ).draggable( "option", "scrollSensitivity" );
// Setter
$( ".selector" ).draggable( "option", "scrollSensitivity", 100 );
相关用法
- JQuery UI Draggable scrollSpeed用法及代码示例
- JQuery UI Draggable scroll用法及代码示例
- JQuery UI Draggable scope用法及代码示例
- JQuery UI Draggable snapMode用法及代码示例
- JQuery UI Draggable snap用法及代码示例
- JQuery UI Draggable start( event, ui )用法及代码示例
- JQuery UI Draggable snapTolerance用法及代码示例
- JQuery UI Draggable stop( event, ui )用法及代码示例
- JQuery UI Draggable stack用法及代码示例
- JQuery UI Draggable cursorAt用法及代码示例
- JQuery UI Draggable containment用法及代码示例
- JQuery UI Draggable option用法及代码示例
- JQuery UI Draggable disabled用法及代码示例
- JQuery UI Draggable revertDuration用法及代码示例
- JQuery UI Draggable iframeFix用法及代码示例
- JQuery UI Draggable enable用法及代码示例
- JQuery UI Draggable cursor用法及代码示例
- JQuery UI Draggable drag( event, ui )用法及代码示例
- JQuery UI Draggable axis用法及代码示例
- JQuery UI Draggable appendTo用法及代码示例
- JQuery UI Draggable zIndex用法及代码示例
- JQuery UI Draggable destroy用法及代码示例
- JQuery UI Draggable addClasses用法及代码示例
- JQuery UI Draggable connectToSortable用法及代码示例
- JQuery UI Draggable classes用法及代码示例
注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Draggable scrollSensitivity。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。