You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 99
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义预览文本
|
|
|
|
en-US: Custom preview mask
|
|
|
|
debug: true
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
自定义预览文本。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Custom preview mask.
|
|
|
|
|
|
|
|
```tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Image, Space } from 'antd';
|
|
|
|
import { ZoomInOutlined } from '@ant-design/icons';
|
|
|
|
|
|
|
|
function ImageDemo() {
|
|
|
|
return (
|
|
|
|
<Image
|
|
|
|
width={96}
|
|
|
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
|
|
|
|
preview={{
|
|
|
|
maskClassName: 'customize-mask',
|
|
|
|
mask: (
|
|
|
|
<Space direction="vertical" align="center">
|
|
|
|
<ZoomInOutlined />
|
|
|
|
示例
|
|
|
|
</Space>
|
|
|
|
),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default () => <ImageDemo />;
|
|
|
|
```
|
|
|
|
|
|
|
|
```css
|
|
|
|
.customize-mask {
|
|
|
|
font-size: 20px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.customize-mask .anticon {
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
```
|