mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
a73abb9487
* feat: Badge.Ribbon, wip * feat: Badge.Ribbon * test: Badge.Ribbon * chore * test: update snapshot * fix: Badge.RibbonStyle IE 11 * chore * docs * chore * chore * refactor * docs * refactor: remove placement left & right * Update components/badge/index.zh-CN.md Co-authored-by: xrkffgg <xrkffgg@gmail.com> * Update components/badge/index.en-US.md Co-authored-by: xrkffgg <xrkffgg@gmail.com> * docs: demo change * docs * refactor: use css * refactor: use css rtl * refactor Co-authored-by: xrkffgg <xrkffgg@gmail.com>
41 lines
902 B
Markdown
41 lines
902 B
Markdown
---
|
|
order: 20
|
|
title:
|
|
zh-CN: Ribbon Debug
|
|
en-US: Ribbon Debug
|
|
debug: true
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
Buggy!
|
|
|
|
## en-US
|
|
|
|
Buggy!
|
|
|
|
```jsx
|
|
import { Badge, Card, Space } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Space direction="vertical" style={{ width: '100%' }}>
|
|
<Badge.Ribbon text="啦啦啦啦">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="purple">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="#2db7f5">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="#2db7f5" placement="start">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="#2db7f5" placement="end">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
</Space>,
|
|
mountNode,
|
|
);
|
|
```
|