--- order: 4 title: zh-CN: 信息预览抽屉 en-US: Preview drawer --- ## zh-CN 需要快速预览对象概要时使用,点击遮罩区关闭。 ## en-US Use Drawer to quickly preview details of an object, such as those in a list. ```jsx import { Drawer, List, Avatar, Divider, Col, Row } from 'antd'; const DescriptionItem = ({ title, content }) => (

{title}:

{content}
); class App extends React.Component { state = { visible: false }; showDrawer = () => { this.setState({ visible: true, }); }; onClose = () => { this.setState({ visible: false, }); }; render() { return ( <> ( View Profile , ]} > } title={{item.name}} description="Progresser XTech" /> )} />

User Profile

Personal

Company

Lin} />

Contacts

github.com/ant-design/ant-design/ } />
); } } ReactDOM.render(, mountNode); ``` ```css .site-description-item-profile-wrapper { margin-bottom: 7px; color: rgba(0, 0, 0, 0.65); font-size: 14px; line-height: 1.5715; } [data-theme='compact'] .site-description-item-profile-wrapper { font-size: 12px; line-height: 1.66667; } .ant-drawer-body p.site-description-item-profile-p { display: block; margin-bottom: 16px; color: rgba(0, 0, 0, 0.85); font-size: 16px; line-height: 1.5715; } [data-theme='compact'] .ant-drawer-body p.site-description-item-profile-p { font-size: 14px; line-height: 1.66667; } .site-description-item-profile-p-label { display: inline-block; margin-right: 8px; color: rgba(0, 0, 0, 0.85); } ```