PanOnScrollMode
此枚举用于设置用户滚动时平移视口的不同模式。Free
模式允许用户通过使用触控板等设备滚动来向任何方向平移。Vertical
和 Horizontal
模式分别将滚动平移限制为垂直轴或水平轴。
¥This enum is used to set the different modes of panning the viewport when the
user scrolls. The Free
mode allows the user to pan in any direction by scrolling
with a device like a trackpad. The Vertical
and Horizontal
modes restrict
scroll panning to only the vertical or horizontal axis, respectively.
export enum PanOnScrollMode {
Free = 'free',
Vertical = 'vertical',
Horizontal = 'horizontal',
}