UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

91 lines (81 loc) 2.91 kB
--- category: 2 title: 位置 title_en: Placement --- zh-CN 位置有十二个方向。如需箭头指向目标元素中心,可以设置 `arrowPointAtCenter`。 en-US There are 12 `placement` options available. Use `arrowPointAtCenter` if you want arrow point at the center of target. ````jsx import { Popconfirm, message, Button } from 'parkball'; const text = 'Are you sure to delete this task?'; function confirm() { message.info('Clicked on Yes.'); } ReactDOM.render( <div className="demo"> <div style={{ marginLeft: 70, whiteSpace: 'nowrap' }}> <Popconfirm placement="topLeft" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>TL</Button> </Popconfirm> <Popconfirm placement="top" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>Top</Button> </Popconfirm> <Popconfirm placement="topRight" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>TR</Button> </Popconfirm> </div> <div style={{ width: 70, float: 'left' }}> <Popconfirm placement="leftTop" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>LT</Button> </Popconfirm> <Popconfirm placement="left" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>Left</Button> </Popconfirm> <Popconfirm placement="leftBottom" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>LB</Button> </Popconfirm> </div> <div style={{ width: 70, marginLeft: 304 }}> <Popconfirm placement="rightTop" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>RT</Button> </Popconfirm> <Popconfirm placement="right" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>Right</Button> </Popconfirm> <Popconfirm placement="rightBottom" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>RB</Button> </Popconfirm> </div> <div style={{ marginLeft: 70, clear: 'both', whiteSpace: 'nowrap' }}> <Popconfirm placement="bottomLeft" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>BL</Button> </Popconfirm> <Popconfirm placement="bottom" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>Bottom</Button> </Popconfirm> <Popconfirm placement="bottomRight" title={text} onConfirm={confirm} okText="Yes" cancelText="No"> <Button>BR</Button> </Popconfirm> </div> </div>, mountNode); ```` <style> .code-box-demo .demo { overflow: auto; } .code-box-demo .ant-popover-wrap > a { margin-right: 8px; } .code-box-demo .ant-btn { margin-right: 8px; margin-bottom: 8px; } #components-popconfirm-demo-placement .ant-btn { width: 70px; text-align: center; padding: 0; } </style>