mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
dcc0ffa016
* style: prettier code * update * Update index.less
833 B
833 B
order | title | debug | ||||
---|---|---|---|---|---|---|
99 |
|
true |
zh-CN
自定义预览文本。
en-US
Custom preview mask.
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>
),
}}
/>
);
}
ReactDOM.render(<ImageDemo />, mountNode);
.customize-mask {
font-size: 20px;
opacity: 1;
}
.customize-mask .anticon {
font-size: 32px;
}