Browse Source

Add color tint and color transform tool

pull/389/head
afc163 9 years ago
parent
commit
59e5ff25ae
  1. 66
      spec/colors.md

66
spec/colors.md

@ -191,3 +191,69 @@ let ExtendPalettes = React.createClass({
});
React.render(<ExtendPalettes />, document.getElementById('extend-palettes'));
`````
## 色彩换算工具
<script src="https://t.alipayobjects.com/images/T1DrxhXe0mXXXXXXXX.js"></script>
> 正数为变淡 `tint` ,负数为加深 `shade`
<div id="color-tint-shade-tool"></div>
Ant Design 专用色彩换算工具,用于解析类似 `#2db7f5 tint 80%` 的色彩标注。
less 或 scss 语言可以直接使用 `tint(#2db7f5, 80%)``shade(#2db7f5, 80%)` 的语法。
`````jsx
let Button = antd.Button;
let InputNumber = antd.InputNumber;
let Slider = antd.Slider;
let TintShadeTool = React.createClass({
getInitialState() {
return {
result: '',
color: '#2db7f5',
value: 80
};
},
handleChangeColor(e) {
this.setState({
color: e.target.value
}, this.calculate);
},
handleChangeValue(value) {
this.setState({
value: value
}, this.calculate);
},
componentDidMount() {
this.calculate();
},
calculate() {
let tintOrShade = this.state.value >= 0 ? 'tint' : 'shade';
let c = new Values(this.state.color);
this.setState({
result: '#' + c[tintOrShade](Math.abs(this.state.value)).hex
});
},
render() {
return <div style={{margin: '40px 0'}}>
<div>
<input className="ant-input" style={{width: 120, color: this.state.color, marginRight: 8}} value={this.state.color} onChange={this.handleChangeColor} />
<InputNumber style={{width: 70}} value={this.state.value} onChange={this.handleChangeValue} min={-100} max={100} />
<span style={{margin: '0 62px 0 8px'}}>%</span>
<div style={{width: 60, borderRadius: 6, height:28, backgroundColor: this.state.result, display: 'inline-block', verticalAlign: 'middle', marginRight: 8}}></div>
<span>{this.state.result}</span>
</div>
<div style={{width: 400, marginTop: 20, position: 'relative'}}>
<Slider value={this.state.value} onChange={this.handleChangeValue} min={-100} max={100} />
<div style={{backgroundColor:'#81D4F9', width: 2, height: 4, position: 'absolute', top: -28, fontSize: 12, textAlign: 'center', top: -1, left: 202}}></div>
</div>
</div>;
}
});
React.render(<TintShadeTool />, document.getElementById('color-tint-shade-tool'));
`````

Loading…
Cancel
Save