|
|
|
---
|
|
|
|
order: 10
|
|
|
|
title:
|
|
|
|
zh-CN: 缎带
|
|
|
|
en-US: Ribbon
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
使用缎带型的徽标。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use ribbon badge.
|
|
|
|
|
|
|
|
```tsx
|
|
|
|
import { Badge, Card } from 'antd';
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
const App: React.FC = () => (
|
|
|
|
<>
|
|
|
|
<Badge.Ribbon text="Hippies">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
<Badge.Ribbon text="Hippies" color="pink">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
<Badge.Ribbon text="Hippies" color="red">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
<Badge.Ribbon text="Hippies" color="cyan">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
<Badge.Ribbon text="Hippies" color="green">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
<Badge.Ribbon text="Hippies" color="purple">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
<Badge.Ribbon text="Hippies" color="volcano">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
<Badge.Ribbon text="Hippies" color="magenta">
|
|
|
|
<Card title="Pushes open the window" size="small">
|
|
|
|
and raises the spyglass.
|
|
|
|
</Card>
|
|
|
|
</Badge.Ribbon>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default App;
|
|
|
|
```
|
|
|
|
|
|
|
|
```css
|
|
|
|
.ant-card {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
```
|