mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
39 lines
885 B
TypeScript
39 lines
885 B
TypeScript
import { VanPopupMixin } from './mixins/popup';
|
|
|
|
export type ImagePreviewOptions =
|
|
| string[]
|
|
| {
|
|
loop?: boolean;
|
|
images: string[];
|
|
maxZoom?: number;
|
|
minZoom?: number;
|
|
className?: any;
|
|
lazyLoad?: boolean;
|
|
showIndex?: boolean;
|
|
closeable?: boolean;
|
|
closeIcon?: string;
|
|
asyncClose?: boolean;
|
|
swipeDuration?: number;
|
|
startPosition?: number;
|
|
showIndicators?: boolean;
|
|
closeOnPopstate?: boolean;
|
|
closeIconPosition?: string;
|
|
onClose?: () => void;
|
|
onChange?: (index: number) => void;
|
|
};
|
|
|
|
export class VanImagePreview extends VanPopupMixin {
|
|
images: string[];
|
|
|
|
showIndex: boolean;
|
|
|
|
startPosition: number;
|
|
}
|
|
|
|
export interface ImagePreview {
|
|
(options: ImagePreviewOptions, startPosition?: number): VanImagePreview;
|
|
install(): void;
|
|
}
|
|
|
|
export const ImagePreview: ImagePreview;
|