mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-14 17:01:17 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
52 lines
826 B
Markdown
52 lines
826 B
Markdown
---
|
|
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;
|
|
}
|
|
```
|