mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 19:49:59 +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
826 B
826 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>
),
}}
/>
);
}
export default () => <ImageDemo />;
.customize-mask {
font-size: 20px;
opacity: 1;
}
.customize-mask .anticon {
font-size: 32px;
}