mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-11-25 13:32:13 +08:00
910 B
910 B
ImagePreview
Install
import { ImagePreview } from 'vant';
Usage
Basic Usage
ImagePreview([
'https://img.yzcdn.cn/1.jpg',
'https://img.yzcdn.cn/2.jpg'
]);
Custom config
ImagePreview({
images: [
'https://img.yzcdn.cn/1.jpg',
'https://img.yzcdn.cn/2.jpg'
],
startPosition: 1,
onClose() {
// do something
}
});
Close Manually
const instance = ImagePreview([
'https://img.yzcdn.cn/1.jpg',
'https://img.yzcdn.cn/2.jpg'
]);
setTimeout(() => {
instance.close();
}, 1000);
Arguments
| Attribute | Description | Type | Default |
|---|---|---|---|
| images | Images URL list | Array |
[] |
| startPosition | Start position | Number |
0 |
| showIndex | Whether to show index | Boolean |
true |
| onClose | Close callback | Function |
- |