2015-07-14 12:06:44 +08:00
|
|
|
# 带输入框的滑块
|
|
|
|
|
|
|
|
- order: 1
|
|
|
|
|
2015-07-16 16:49:00 +08:00
|
|
|
和 [数字输入框](/components/input-number/) 组件保持同步。
|
2015-07-14 12:06:44 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Slider, InputNumber } 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 {
|
2015-08-18 14:28:32 +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({
|
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 (
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-12">
|
|
|
|
<Slider min={1} max={20} onChange={this.onChange} value={this.state.inputValue} />
|
|
|
|
</div>
|
|
|
|
<div className="col-4">
|
|
|
|
<InputNumber min={1} max={20} style={{marginLeft: '16px'}}
|
|
|
|
value={this.state.inputValue} onChange={this.onChange} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
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 (
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-12">
|
|
|
|
<Slider min={0} max={1} onChange={this.onChange} value={this.state.inputValue} step={0.01} />
|
|
|
|
</div>
|
|
|
|
<div className="col-4">
|
|
|
|
<InputNumber min={0} max={1} style={{marginLeft: '16px'}} step={0.01}
|
|
|
|
value={this.state.inputValue} onChange={this.onChange} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
ReactDOM.render(<div>
|
|
|
|
<IntegerStep />
|
|
|
|
<DecimalStep />
|
|
|
|
</div>, document.getElementById('components-slider-demo-input-number'));
|
2015-07-14 12:06:44 +08:00
|
|
|
````
|