forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add
delay
props of Spin (ant-design#4424)
* add `delay` props of Spin + close 4306 + Specifies a delay for loading state. If `spinning` ends during delay, loading state won't appear. * improves
- Loading branch information
Showing
4 changed files
with
74 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
order: 5 | ||
title: | ||
zh-CN: 延迟 | ||
en-US: delay | ||
--- | ||
|
||
## zh-CN | ||
|
||
延迟显示 loading 效果。当 spinning 状态在 `delay` 时间内结束,则不显示 loading 状态。 | ||
|
||
## en-US | ||
|
||
Specifies a delay for loading state. If `spinning` ends during delay, loading status won't appear. | ||
|
||
````jsx | ||
import { Spin, Alert, Switch } from 'antd'; | ||
|
||
const Card = React.createClass({ | ||
getInitialState() { | ||
return { loading: false }; | ||
}, | ||
toggle(value) { | ||
this.setState({ loading: value }); | ||
}, | ||
render() { | ||
const container = ( | ||
<Alert message="Alert message title" | ||
description="Further details about the context of this alert." | ||
type="info" | ||
/> | ||
); | ||
return ( | ||
<div> | ||
<Spin spinning={this.state.loading} delay={500} >{container}</Spin> | ||
Loading state:<Switch checked={this.state.loading} onChange={this.toggle} /> | ||
</div> | ||
); | ||
}, | ||
}); | ||
|
||
ReactDOM.render( | ||
<Card /> | ||
, mountNode); | ||
```` | ||
|
||
````css | ||
.example { | ||
text-align: center; | ||
background: rgba(0,0,0,0.05); | ||
border-radius: 4px; | ||
margin-bottom: 20px; | ||
padding: 30px 50px; | ||
margin: 20px 0; | ||
} | ||
```` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters