mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
18c6d6fedb
* feat: Image add PreviewGroup component to support multiple images preview * demo and PreviewGroup type * add demo snapshot
661 B
661 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
点击左右切换按钮可以预览多张图片。
en-US
Click the left and right switch buttons to preview multiple images.
import { Image } from 'antd';
function ImageDemo() {
return (
<Image.PreviewGroup>
<Image
width={200}
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
/>
<Image
width={200}
src="https://gw.alipayobjects.com/zos/antfincdn/aPkFc8Sj7n/method-draw-image.svg"
/>
</Image.PreviewGroup>
);
}
ReactDOM.render(<ImageDemo />, mountNode);