mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(ImagePreview): add image slot scale guide (#12751)
This commit is contained in:
parent
b332c1643a
commit
83bcbf5738
@ -185,6 +185,20 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
When you customize the image through the `image` slot, you can bind the `style` and `onLoad` callback through the params of the slot, which can allow the `<img>` tag to support image scaling.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-image-preview
|
||||||
|
v-model:show="show"
|
||||||
|
:images="images"
|
||||||
|
:close-on-click-image="false"
|
||||||
|
>
|
||||||
|
<template #image="{ src, style, onLoad }">
|
||||||
|
<img :style="[{ width: '100%' }, style]" @load="onLoad" />
|
||||||
|
</template>
|
||||||
|
</van-image-preview>
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### Methods
|
### Methods
|
||||||
|
@ -186,6 +186,20 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
当你通过 `image` 插槽自定义图片时,可以通过插槽的参数绑定 `style` 样式和 `onLoad` 回调函数,这可以让 `<img>` 标签支持图片缩放。
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-image-preview
|
||||||
|
v-model:show="show"
|
||||||
|
:images="images"
|
||||||
|
:close-on-click-image="false"
|
||||||
|
>
|
||||||
|
<template #image="{ src, style, onLoad }">
|
||||||
|
<img :style="[{ width: '100%' }, style]" @load="onLoad" />
|
||||||
|
</template>
|
||||||
|
</van-image-preview>
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### 方法
|
### 方法
|
||||||
|
Loading…
x
Reference in New Issue
Block a user