mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { VanComponent } from './component';
|
|
import { VanPopupMixin } from './mixins/popup';
|
|
import { SwipeToOptions } from './swipe';
|
|
|
|
export type ImagePreviewOptions =
|
|
| string[]
|
|
| {
|
|
loop?: boolean;
|
|
images: string[];
|
|
maxZoom?: number;
|
|
minZoom?: number;
|
|
className?: any;
|
|
showIndex?: boolean;
|
|
closeable?: boolean;
|
|
closeIcon?: string;
|
|
asyncClose?: 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 extends VanPopupMixin {
|
|
images: string[];
|
|
|
|
showIndex: boolean;
|
|
|
|
startPosition: number;
|
|
}
|
|
|
|
export interface ImagePreview {
|
|
(options: ImagePreviewOptions, startPosition?: number): VanImagePreview;
|
|
install(): void;
|
|
Component: typeof VanComponent;
|
|
}
|
|
|
|
export const ImagePreview: ImagePreview;
|