ant-design/components/slider/demo/show-tooltip.md
2019-05-07 14:57:32 +08:00

21 lines
489 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
order: 7
title:
zh-CN: 控制 ToolTip 的显示
en-US: Control visible of ToolTip
---
## zh-CN
`tooltipVisible``true` 时,将始终显示 ToolTip反之则始终不显示即使在拖动、移入时也是如此。
## en-US
When `tooltipVisible` is `true`, ToolTip will show always, or ToolTip will not show anyway, even if dragging or hovering.
```jsx
import { Slider } from 'antd';
ReactDOM.render(<Slider defaultValue={30} tooltipVisible />, mountNode);
```