ImagePreview 图片预览

介绍

图片放大预览,支持组件调用和函数调用两种方式。

引入

通过以下方式来全局注册组件,更多注册方式请参考组件注册

  1. import { createApp } from 'vue';
  2. import { ImagePreview } from 'vant';
  3. const app = createApp();
  4. app.use(ImagePreview);

函数调用

为了便于使用 ImagePreview,Vant 提供了一系列辅助函数,通过辅助函数可以快速唤起全局的图片预览组件。

比如使用 showImagePreview 函数,调用后会直接在页面中渲染对应的图片预览组件。

  1. import { showImagePreview } from 'vant';
  2. showImagePreview(['https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg']);

代码演示

基础用法

在调用 showImagePreview 时,直接传入图片数组,即可展示图片预览。

  1. import { showImagePreview } from 'vant';
  2. showImagePreview([
  3. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
  4. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
  5. ]);

指定初始位置

showImagePreview 支持传入配置对象,并通过 startPosition 选项指定图片的初始位置(索引值)。

  1. import { showImagePreview } from 'vant';
  2. showImagePreview({
  3. images: [
  4. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
  5. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
  6. ],
  7. startPosition: 1,
  8. });

展示关闭按钮

设置 closeable 属性后,会在弹出层的右上角显示关闭图标,并且可以通过 close-icon 属性自定义图标,使用close-icon-position 属性可以自定义图标位置。

  1. import { showImagePreview } from 'vant';
  2. showImagePreview({
  3. images: [
  4. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
  5. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
  6. ],
  7. closeable: true,
  8. });

监听关闭事件

通过 onClose 选项监听图片预览的关闭事件。

  1. import { showToast, showImagePreview } from 'vant';
  2. showImagePreview({
  3. images: [
  4. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
  5. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
  6. ],
  7. onClose() {
  8. showToast('关闭');
  9. },
  10. });

异步关闭

通过 beforeClose 属性可以拦截关闭行为。

  1. import { showImagePreview } from 'vant';
  2. const instance = showImagePreview({
  3. images: [
  4. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
  5. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
  6. ],
  7. beforeClose: () => false,
  8. });
  9. setTimeout(() => {
  10. // 调用实例上的 close 方法手动关闭图片预览
  11. instance.close();
  12. }, 2000);

使用 ImagePreview 组件

如果需要在 ImagePreview 内嵌入组件或其他自定义内容,可以直接使用 ImagePreview 组件,并使用 index 插槽进行定制。使用前需要通过 app.use 等方式注册组件。

  1. <van-image-preview v-model:show="show" :images="images" @change="onChange">
  2. <template v-slot:index>第{{ index }}页</template>
  3. </van-image-preview>
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const show = ref(false);
  5. const index = ref(0);
  6. const images = [
  7. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
  8. 'https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
  9. ];
  10. const onChange = (newIndex) => {
  11. index.value = newIndex;
  12. };
  13. return {
  14. show,
  15. index,
  16. images,
  17. onChange,
  18. };
  19. },
  20. };

使用 image 插槽

当以组件调用的方式使用 ImagePreview 时,可以通过 image 插槽来插入自定义的内容,比如展示一个视频内容。

  1. <van-image-preview v-model:show="show" :images="images">
  2. <template #image="{ src }">
  3. <video style="width: 100%;" controls>
  4. <source :src="src" />
  5. </video>
  6. </template>
  7. </van-image-preview>
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const show = ref(false);
  5. const images = [
  6. 'https://www.w3school.com.cn/i/movie.ogg',
  7. 'https://www.w3school.com.cn/i/movie.ogg',
  8. 'https://www.w3school.com.cn/i/movie.ogg',
  9. ];
  10. return {
  11. show,
  12. images,
  13. };
  14. },
  15. };

API

方法

Vant 中导出了以下 ImagePreview 相关的辅助函数:

| 方法名 | 说明 | 参数 | 返回值 | | ———————— | —————— | ————- | —————————— | ————————- | | showImagePreview | 展示图片预览 | string[] | ImagePreviewOptions | imagePreview 实例 |

ImagePreviewOptions

调用 showImagePreview 方法时,支持传入以下选项:

参数名说明类型默认值
images需要预览的图片 URL 数组string[][]
startPosition图片预览起始位置索引number | string0
swipeDuration动画时长,单位为 msnumber | string300
showIndex是否显示页码booleantrue
showIndicators是否显示轮播指示器booleanfalse
loop是否开启循环播放booleantrue
onClose关闭时的回调函数Function-
onChange切换图片时的回调函数,回调参数为当前索引Function-
onScale缩放图片时的回调函数,回调参数为当前索引和当前缩放值组成的对象Function-
beforeClose关闭前的回调函数,返回 false 可阻止关闭,支持返回 Promise(active: number) => boolean | Promise<boolean>-
closeOnPopstate是否在页面回退时自动关闭booleantrue
className自定义类名string | Array | object-
maxZoom手势缩放时,最大缩放比例number | string3
minZoom手势缩放时,最小缩放比例number | string1/3
closeable是否显示关闭图标booleanfalse
closeIcon关闭图标名称或图片链接stringclear
closeIconPosition关闭图标位置,可选值为 top-left
bottom-left bottom-right
stringtop-right
transition v3.0.8动画类名,等价于 transitionname 属性stringvan-fade
overlayClass v3.2.8自定义遮罩层类名string | Array | object-
overlayStyle v3.0.8自定义遮罩层样式object-
teleport指定挂载的节点,等同于 Teleport 组件的 to 属性string | Element-

Props

通过组件调用 ImagePreview 时,支持以下 Props:

参数说明类型默认值
v-model:show是否展示图片预览booleanfalse
images需要预览的图片 URL 数组string[][]
start-position图片预览起始位置索引number | string0
swipe-duration动画时长,单位为 msnumber | string300
show-index是否显示页码booleantrue
show-indicators是否显示轮播指示器booleanfalse
loop是否开启循环播放booleantrue
before-close关闭前的回调函数,返回 false 可阻止关闭,支持返回 Promise(active: number) => boolean | Promise<boolean>-
close-on-popstate是否在页面回退时自动关闭booleantrue
class-name自定义类名string | Array | object-
max-zoom手势缩放时,最大缩放比例number | string3
min-zoom手势缩放时,最小缩放比例number | string1/3
closeable是否显示关闭图标booleanfalse
close-icon关闭图标名称或图片链接stringclear
close-icon-position关闭图标位置,可选值为 top-left
bottom-left bottom-right
stringtop-right
transition v3.0.8动画类名,等价于 transitionname 属性stringvan-fade
overlay-class v3.2.8自定义遮罩层类名string | Array | object-
overlay-style v3.0.8自定义遮罩层样式object-
teleport指定挂载的节点,等同于 Teleport 组件的 to 属性string | Element-

Events

通过组件调用 ImagePreview 时,支持以下事件:

事件说明回调参数
close关闭时触发{ index: number, url: string }
closed关闭且且动画结束后触发-
change切换当前图片时触发index: number
scale缩放当前图片时触发{ index: number, scale: number }
long-press长按当前图片时触发{ index: number }

方法

通过组件调用 ImagePreview 时,通过 ref 可以获取到 ImagePreview 实例并调用实例方法,详见组件实例方法

方法名说明参数返回值
swipeTo 2.9.0切换到指定位置index: number, options?: SwipeToOptions-

类型定义

组件导出以下类型定义:

  1. import type {
  2. ImagePreviewProps,
  3. ImagePreviewOptions,
  4. ImagePreviewInstance,
  5. ImagePreviewScaleEventParams,
  6. } from 'vant';

ImagePreviewInstance 是组件实例的类型,用法如下:

  1. import { ref } from 'vue';
  2. import type { ImagePreviewInstance } from 'vant';
  3. const imagePreviewRef = ref<ImagePreviewInstance>();
  4. imagePreviewRef.value?.swipeTo(1);

Slots

通过组件调用 ImagePreview 时,支持以下插槽:

名称说明参数
index自定义页码内容{ index: 当前图片的索引 }
cover自定义覆盖在图片预览上方的内容-
image v3.6.5自定义图片内容{ src: 当前资源地址 }

onClose 回调参数

参数名说明类型
url当前图片 URLstring
index当前图片的索引值number

onScale 回调参数

参数名说明类型
index当前图片的索引值number
scale当前图片的缩放值number

主题定制

样式变量

组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 ConfigProvider 组件

名称默认值描述
—van-image-preview-index-text-colorvar(—van-white)-
—van-image-preview-index-font-sizevar(—van-font-size-md)-
—van-image-preview-index-line-heightvar(—van-line-height-md)-
—van-image-preview-index-text-shadow0 1px 1px var(—van-gray-8)-
—van-image-preview-overlay-backgroundrgba(0, 0, 0, 0.9)-
—van-image-preview-close-icon-size22px-
—van-image-preview-close-icon-colorvar(—van-gray-5)-
—van-image-preview-close-icon-marginvar(—van-padding-md)-
—van-image-preview-close-icon-z-index1-

常见问题

在桌面端无法操作组件?

参见桌面端适配

引用 showImagePreview 时出现编译报错?

如果引用 showImagePreview 方法时出现以下报错,说明项目中使用了 babel-plugin-import 插件,导致代码被错误编译。

  1. These dependencies were not found:
  2. * vant/es/show-image-preview in ./src/xxx.js
  3. * vant/es/show-image-preview/style in ./src/xxx.js

Vant 从 4.0 版本开始不再支持 babel-plugin-import 插件,请参考 迁移指南 移除该插件。

ImagePreview 图片预览 - 图1