UNPKG

otter-react-photo-view

Version:

An exquisite React photo preview component

49 lines (48 loc) 1 kB
/** * 最大触摸时间 */ export declare const maxTouchTime = 200; /** * 默认动画速度 */ export declare const defaultSpeed = 400; /** * 默认动画函数 */ export declare const defaultEasing = "cubic-bezier(0.25, 0.8, 0.25, 1)"; /** * 最大滑动切换图片距离 */ export declare const maxMoveOffset = 40; /** * 图片的间隔 */ export declare const horizontalOffset = 20; /** * 最小初始响应距离 */ export declare const minStartTouchOffset = 20; /** * 默认背景透明度 */ export declare const defaultOpacity = 1; /** * 最小缩放度 */ export declare const minScale = 0.5; /** * 最大缩放度(若图片足够大,则会超出) */ export declare const maxScale = 6; /** * 最小长图模式比例 */ export declare const longModeRatio = 3; /** * 缩放弹性缓冲 */ export declare const scaleBuffer = 0.2; /** * 最大等待动画时间 */ export declare const maxWaitAnimationTime = 250;