--- order: 2 title: 进场和离场 --- 通过把属性设置一个数组来分别表示进出场的效果,`type`、`animConfig`、`delay`、`duration`、`interval`、`ease` 等属性均支持配置为数组。 ````jsx import { QueueAnim, Button } from 'antd'; const Test = React.createClass({ getInitialState() { return { show: true, }; }, onClick() { this.setState({ show: !this.state.show, }); }, render() { const list = this.state.show ? [