You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
599 B
40 lines
599 B
7 years ago
|
---
|
||
|
order: 7
|
||
|
title:
|
||
|
zh-CN: 自定义标题
|
||
|
en-US: Title
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
设置鼠标放在状态点上时显示的文字
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
The badge will display `title` when hovered over, instead of `count`.
|
||
|
|
||
|
````jsx
|
||
|
import { Badge } from 'antd';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<div>
|
||
|
<Badge count={5} title="Custom hover text">
|
||
|
<a href="#" className="head-example" />
|
||
|
</Badge>
|
||
|
</div>
|
||
|
, mountNode);
|
||
|
````
|
||
|
|
||
|
<style>
|
||
|
.ant-badge:not(.ant-badge-status) {
|
||
|
margin-right: 20px;
|
||
|
}
|
||
|
.head-example {
|
||
|
width: 42px;
|
||
|
height: 42px;
|
||
|
border-radius: 4px;
|
||
|
background: #eee;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
</style>
|