mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
样式调整
This commit is contained in:
parent
9b5c224234
commit
331443419c
@ -11,9 +11,9 @@ var Circle = antd.Progress.Circle;
|
||||
|
||||
React.render(
|
||||
<div>
|
||||
<Circle percent="30" width="150" />
|
||||
<Circle percent="70" width="150" status="exception" />
|
||||
<Circle percent="100" width="150" />
|
||||
<Circle percent="30" />
|
||||
<Circle percent="70" status="exception" />
|
||||
<Circle percent="100" />
|
||||
</div>
|
||||
, document.getElementById('components-progress-demo-circle'));
|
||||
````
|
||||
|
@ -11,9 +11,9 @@ var Line = antd.Progress.Line;
|
||||
|
||||
React.render(
|
||||
<div>
|
||||
<Line percent="30" width="300" strokeWidth="3" />
|
||||
<Line percent="70" width="300" strokeWidth="3" status="exception" />
|
||||
<Line percent="100" width="300" strokeWidth="3" />
|
||||
<Line percent="30" />
|
||||
<Line percent="70" status="exception" />
|
||||
<Line percent="100" />
|
||||
</div>
|
||||
, document.getElementById('components-progress-demo-line'));
|
||||
````
|
||||
|
@ -7,8 +7,9 @@ var React = require('react');
|
||||
var Line = React.createClass({
|
||||
getDefaultProps: function () {
|
||||
return {
|
||||
width: 300,
|
||||
percent: 0,
|
||||
strokeWidth: 4,
|
||||
strokeWidth: 3,
|
||||
status: 'normal' // exception
|
||||
};
|
||||
},
|
||||
@ -26,8 +27,9 @@ var Line = React.createClass({
|
||||
var style = {
|
||||
'width': this.props.width
|
||||
};
|
||||
var wrapStyle = {
|
||||
'font-size': this.props.width / 100 * this.props.strokeWidth
|
||||
var fontSize = (this.props.width / 100 * this.props.strokeWidth);
|
||||
var iconStyle = {
|
||||
'font-size': (fontSize < 14) ? 14 : fontSize
|
||||
};
|
||||
var textStyle = {
|
||||
'color': statusColorMap[this.props.status]
|
||||
@ -36,13 +38,14 @@ var Line = React.createClass({
|
||||
if (this.props.status === 'exception') {
|
||||
progressInfo = (
|
||||
<span style={textStyle} className='ant-progress-line-text'>
|
||||
<i className='anticon anticon-exclamation-round'></i>
|
||||
<i style={iconStyle} className='anticon anticon-exclamation-round'></i>
|
||||
</span>
|
||||
);
|
||||
|
||||
} else if(this.props.status === 'success'){
|
||||
progressInfo = (
|
||||
<span style={textStyle} className='ant-progress-line-text'>
|
||||
<i className='anticon anticon-check-round'></i>
|
||||
<i style={iconStyle} className='anticon anticon-check-round'></i>
|
||||
</span>
|
||||
);
|
||||
}else {
|
||||
@ -52,7 +55,7 @@ var Line = React.createClass({
|
||||
}
|
||||
|
||||
return (
|
||||
<div className='ant-progress-line-wrap' style={wrapStyle}>
|
||||
<div className='ant-progress-line-wrap' >
|
||||
<div className='ant-progress-line-inner' style={style}>
|
||||
<Progressline percent={this.props.percent} strokeWidth={this.props.strokeWidth}
|
||||
strokeColor={statusColorMap[this.props.status]} trailColor="#e9e9e9" />
|
||||
@ -66,6 +69,7 @@ var Line = React.createClass({
|
||||
var Circle = React.createClass({
|
||||
getDefaultProps: function () {
|
||||
return {
|
||||
width: 150,
|
||||
percent: 0,
|
||||
strokeWidth: 4,
|
||||
status: 'normal' // exception
|
||||
@ -87,7 +91,7 @@ var Circle = React.createClass({
|
||||
'height': this.props.width
|
||||
};
|
||||
var wrapStyle = {
|
||||
'font-size': this.props.width * 0.3
|
||||
'font-size': this.props.width * 0.2
|
||||
};
|
||||
var textStyle = {
|
||||
'color': statusColorMap[this.props.status]
|
||||
@ -99,6 +103,12 @@ var Circle = React.createClass({
|
||||
<i className='anticon anticon-exclamation'></i>
|
||||
</span>
|
||||
);
|
||||
}else if(this.props.status === 'suucess'){
|
||||
progressInfo = (
|
||||
<span style={textStyle} className='ant-progress-circle-text'>
|
||||
<i className="anticon anticon-check"></i>
|
||||
</span>
|
||||
);
|
||||
}else {
|
||||
progressInfo = (
|
||||
<span className="ant-progress-circle-text">{this.props.percent}%</span>
|
||||
|
@ -5,6 +5,10 @@
|
||||
&-circle-wrap {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
&-line-wrap {
|
||||
font-size: 12px;
|
||||
}
|
||||
&-line-inner {
|
||||
display: inline-block;
|
||||
|
||||
@ -20,7 +24,7 @@
|
||||
line-height: 1;
|
||||
|
||||
.anticon {
|
||||
font-size: 1.5em;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
}
|
||||
|
||||
@ -35,11 +39,11 @@
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 1;
|
||||
top: 33%;
|
||||
top: 38%;
|
||||
left: 0;
|
||||
|
||||
.anticon {
|
||||
font-size: 1em;
|
||||
font-size: 14/12em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user