UNPKG

laya-coreui-es

Version:

laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改

30 lines (29 loc) 753 B
/** * <code>Mouse</code> 类用于控制鼠标光标样式。 */ export declare class Mouse { /**@private */ private static _style; /**@private */ private static _preCursor; /** * 设置鼠标样式 * @param cursorStr * 例如auto move no-drop col-resize * all-scroll pointer not-allowed row-resize * crosshair progress e-resize ne-resize * default text n-resize nw-resize * help vertical-text s-resize se-resize * inherit wait w-resize sw-resize */ static set cursor(cursorStr: string); static get cursor(): string; /** * 隐藏鼠标 */ static hide(): void; /** * 显示鼠标 */ static show(): void; }