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

68 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title: 带输入框的滑块
---
2015-07-14 12:06:44 +08:00
2016-04-14 11:22:53 +08:00
和 [数字输入框](/components/input-number/) 组件保持同步。
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 {
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({
2015-07-16 16:48:06 +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' }}
2015-07-16 16:48:06 +08:00
value={this.state.inputValue} onChange={this.onChange} />
</Col>
</Row>
2015-07-16 16:48:06 +08:00
);
2015-07-14 12:06:44 +08:00
}
});
2015-11-23 16:16:54 +08:00
const DecimalStep = React.createClass({
getInitialState() {
return {
inputValue: 0
};
},
onChange(value) {
this.setState({
inputValue: value
});
},
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}
2015-11-23 16:16:54 +08:00
value={this.state.inputValue} onChange={this.onChange} />
</Col>
</Row>
2015-11-23 16:16:54 +08:00
);
}
});
ReactDOM.render(<div>
<IntegerStep />
<DecimalStep />
</div>, mountNode);
2015-07-14 12:06:44 +08:00
````