upgrade slider demo style

This commit is contained in:
afc163 2016-11-29 13:17:08 +08:00
parent 932443099a
commit 3be71e41bf
2 changed files with 26 additions and 11 deletions

View File

@ -20,18 +20,16 @@ class Demo extends React.Component {
state = {
disabled: false,
};
handleDisabledChange = (disabled) => {
this.setState({ disabled });
}
render() {
const { disabled } = this.state;
return (
<div>
Disabled: <Switch checked={disabled} onChange={this.handleDisabledChange} />
<Slider defaultValue={30} disabled={disabled} />
<Slider range defaultValue={[20, 50]} disabled={disabled} />
Disabled: <Switch size="small" checked={disabled} onChange={this.handleDisabledChange} />
</div>
);
}
@ -39,3 +37,9 @@ class Demo extends React.Component {
ReactDOM.render(<Demo />, mountNode);
````
<style>
.code-box-demo .ant-slider {
margin-bottom: 16px;
}
</style>

View File

@ -25,7 +25,7 @@ const marks = {
37: '37°C',
100: {
style: {
color: 'red',
color: '#f50',
},
label: <strong>100°C</strong>,
},
@ -33,16 +33,27 @@ const marks = {
ReactDOM.render(
<div>
<p><code>included=true</code></p>
<h4>included=true</h4>
<Slider marks={marks} defaultValue={37} />
<Slider range marks={marks} defaultValue={[26, 37]} />
<p><code>included=false</code></p>
<h4>included=false</h4>
<Slider marks={marks} included={false} defaultValue={37} />
<p><code>marks && step</code></p>
<h4>marks & step</h4>
<Slider marks={marks} step={10} defaultValue={37} />
<p><code>step=null</code></p>
<h4>step=null</h4>
<Slider marks={marks} step={null} defaultValue={37} />
</div>,
mountNode
);
</div>
, mountNode);
````
<style>
#components-slider-demo-mark h4 {
margin: 0 0 16px;
}
#components-slider-demo-mark .ant-slider-with-marks {
margin-bottom: 44px;
}
</style>