ant-design/components/slider/demo/basic.md

44 lines
915 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-07-13 08:00:31 +08:00
## zh-CN
2015-11-18 16:56:22 +08:00
基本滑动条。当 `range``true` 时,渲染为双滑块。当 `disabled``true` 时,滑块处于不可用状态。
2015-07-13 08:00:31 +08:00
## en-US
Basic slider. When `range` is `true`, display as dual thumb mode. When `disable` is `true`, the slider will not be interactable.
```tsx
2016-11-21 16:37:04 +08:00
import { Slider, Switch } from 'antd';
2022-05-23 14:37:16 +08:00
import React, { useState } from 'react';
2016-11-21 16:37:04 +08:00
const App: React.FC = () => {
const [disabled, setDisabled] = useState(false);
2018-06-27 15:55:04 +08:00
const onChange = (checked: boolean) => {
setDisabled(checked);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
return (
<>
<Slider defaultValue={30} disabled={disabled} />
<Slider range defaultValue={[20, 50]} disabled={disabled} />
Disabled: <Switch size="small" checked={disabled} onChange={onChange} />
</>
);
};
2016-11-21 16:37:04 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```
2016-11-29 13:17:08 +08:00
<style>
.code-box-demo .ant-slider {
margin-bottom: 16px;
}
</style>