ant-design/components/slider/demo/input-number.md

78 lines
1.5 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title:
zh-CN: 带输入框的滑块
en-US: Slider with input field
2016-03-31 09:40:55 +08:00
---
2015-07-14 12:06:44 +08:00
## zh-CN
2016-04-14 11:22:53 +08:00
和 [数字输入框](/components/input-number/) 组件保持同步。
2015-07-14 12:06:44 +08:00
## en-US
Synchronize with [InptNumber](/components/input-number/) component.
2015-07-14 12:06:44 +08:00
````jsx
import { Slider, InputNumber, Row, Col } from 'antd';
2015-07-14 12:06:44 +08:00
2015-11-23 16:16:54 +08:00
const IntegerStep = React.createClass({
2015-07-14 12:06:44 +08:00
getInitialState() {
return {
2016-05-11 09:32:33 +08:00
inputValue: 1,
2015-07-14 12:06:44 +08:00
};
},
2015-07-16 16:48:06 +08:00
onChange(value) {
2015-07-14 12:06:44 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
inputValue: value,
2015-07-14 12:06:44 +08:00
});
},
render() {
2015-07-16 16:48:06 +08:00
return (
<Row>
<Col span={12}>
2015-07-16 16:48:06 +08:00
<Slider min={1} max={20} onChange={this.onChange} value={this.state.inputValue} />
</Col>
<Col span={4}>
<InputNumber min={1} max={20} style={{ marginLeft: '16px' }}
value={this.state.inputValue} onChange={this.onChange}
/>
</Col>
</Row>
2015-07-16 16:48:06 +08:00
);
2016-05-11 09:32:33 +08:00
},
2015-07-14 12:06:44 +08:00
});
2015-11-23 16:16:54 +08:00
const DecimalStep = React.createClass({
getInitialState() {
return {
2016-05-11 09:32:33 +08:00
inputValue: 0,
2015-11-23 16:16:54 +08:00
};
},
onChange(value) {
this.setState({
2016-05-11 09:32:33 +08:00
inputValue: value,
2015-11-23 16:16:54 +08:00
});
},
render() {
return (
<Row>
<Col span={12}>
2015-11-23 16:16:54 +08:00
<Slider min={0} max={1} onChange={this.onChange} value={this.state.inputValue} step={0.01} />
</Col>
<Col span={4}>
<InputNumber min={0} max={1} style={{ marginLeft: '16px' }} step={0.01}
value={this.state.inputValue} onChange={this.onChange}
/>
</Col>
</Row>
2015-11-23 16:16:54 +08:00
);
2016-05-11 09:32:33 +08:00
},
2015-11-23 16:16:54 +08:00
});
ReactDOM.render(<div>
<IntegerStep />
<DecimalStep />
</div>, mountNode);
2015-07-14 12:06:44 +08:00
````