UNPKG

js-web-screen-shot

Version:

web端自定义截屏插件(原生JS版)

18 lines (17 loc) 643 B
import { CropBoxBounds } from "../../../../lib/type/components/cropBox"; import { ToolPlacement } from "../../../../lib/type/components/toolbar"; /** * 计算截图工具栏位置 * @param position 裁剪框位置信息 * @param toolWidth 截图工具栏宽度 * @param containerWidth 截图容器宽度 * @param placement 展示位置 * @param containerLocation 截图容器位置信息 */ export declare function calculateToolLocation(position: CropBoxBounds, toolWidth: number, containerWidth: number, placement: ToolPlacement, containerLocation: { top: number; left: number; }): { mouseX: number; mouseY: number; };