mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
import { VanComponent } from './component';
|
|
import { SwipeToOptions } from './swipe';
|
|
|
|
export type ImagePreviewOptions =
|
|
| string[]
|
|
| {
|
|
loop?: boolean;
|
|
images: string[];
|
|
maxZoom?: number;
|
|
minZoom?: number;
|
|
className?: any;
|
|
showIndex?: boolean;
|
|
closeable?: boolean;
|
|
closeIcon?: string;
|
|
beforeClose?: (active: number) => boolean | Promise<boolean>;
|
|
swipeDuration?: number;
|
|
startPosition?: number;
|
|
showIndicators?: boolean;
|
|
closeOnPopstate?: boolean;
|
|
closeIconPosition?: string;
|
|
getContainer?: string | (() => Element);
|
|
onClose?(): void;
|
|
onChange?(index: number): void;
|
|
swipeTo?(index: number, options?: SwipeToOptions): void;
|
|
};
|
|
|
|
export class VanImagePreview {
|
|
images: string[];
|
|
|
|
showIndex: boolean;
|
|
|
|
startPosition: number;
|
|
}
|
|
|
|
export interface ImagePreview {
|
|
(options: ImagePreviewOptions, startPosition?: number): VanImagePreview;
|
|
install(): void;
|
|
Component: typeof VanComponent;
|
|
}
|
|
|
|
export const ImagePreview: ImagePreview;
|