|
|
|
# 带 icon 的滑块
|
|
|
|
|
|
|
|
- order: 2
|
|
|
|
|
|
|
|
滑块左右可以设置图标来表达业务含义。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Slider, Icon } from 'antd';
|
|
|
|
|
|
|
|
const IconSlider = React.createClass({
|
|
|
|
getInitialState() {
|
|
|
|
const max = this.props.max;
|
|
|
|
const min = this.props.min;
|
|
|
|
const mid = ((max - min) / 2).toFixed(5);
|
|
|
|
|
|
|
|
return {
|
|
|
|
preIconClass: this.props.value >= mid ? '' : 'anticon-highlight',
|
|
|
|
nextIconClass: this.props.value >= mid ? 'anticon-highlight' : '',
|
|
|
|
mid: mid,
|
|
|
|
sliderValue: this.props.value
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
handleChange(v) {
|
|
|
|
this.setState(
|
|
|
|
{
|
|
|
|
preIconClass: v >= this.state.mid ? '' : 'anticon-highlight',
|
|
|
|
nextIconClass: v >= this.state.mid ? 'anticon-highlight': '',
|
|
|
|
sliderValue: v
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="iconWrapper">
|
|
|
|
<Icon className={this.state.preIconClass} type={this.props.icon[0]} />
|
|
|
|
<Icon className={this.state.nextIconClass} type={this.props.icon[1]} />
|
|
|
|
<Slider {...this.props} onChange={this.handleChange} value={this.state.sliderValue} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<IconSlider min={0} max={20} value={0} icon={['lock', 'unlock']} />
|
|
|
|
, document.getElementById('components-slider-demo-icon-slider'));
|
|
|
|
````
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.iconWrapper {
|
|
|
|
position: relative;
|
|
|
|
padding: 0 24px 0 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.iconWrapper .anticon {
|
|
|
|
position: absolute;
|
|
|
|
top: -6px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
line-height: 1;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.iconWrapper .anticon-lock {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.iconWrapper .anticon-unlock{
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.anticon.anticon-highlight {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
</style>
|