2017-01-23 22:24:36 +08:00
|
|
|
---
|
|
|
|
order: 8
|
|
|
|
title:
|
|
|
|
zh-CN: 幽灵按钮
|
|
|
|
en-US: Ghost Button
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2018-08-22 16:17:33 +08:00
|
|
|
幽灵按钮将按钮的内容反色,背景变为透明,常用在有色背景上。
|
2017-01-23 22:24:36 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
`ghost` property will make button's background transparent, it is common used in colored background.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2017-01-23 22:24:36 +08:00
|
|
|
import { Button } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div style={{ background: 'rgb(190, 200, 200)', padding: '26px 16px 16px' }}>
|
2017-03-18 16:33:55 +08:00
|
|
|
<Button type="primary" ghost>Primary</Button>
|
|
|
|
<Button ghost>Default</Button>
|
|
|
|
<Button type="dashed" ghost>Dashed</Button>
|
|
|
|
<Button type="danger" ghost>danger</Button>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
2018-11-28 15:00:03 +08:00
|
|
|
mountNode
|
|
|
|
);
|
2017-01-23 22:24:36 +08:00
|
|
|
````
|