我正在编写一个应用程序,redux-router
并且我正在使用 aReactCSSTransitionGroup
在页面之间设置动画,如下所示:
class App extends Component {
render() {
return (
<ReactCSSTransitionGroup
component="div"
transitionName="moveLeft"
transitionEnterTimeout={700}
transitionLeaveTimeout={700}
>
{React.cloneElement(this.props.children, {
key: this.props.location.pathname
})}
</ReactCSSTransitionGroup>
);
}
}
我正在处理的项目有一个index
页面和articles
. 我将如何根据用户是否从 the 移动index
到 an 来显示不同的转换article
,反之亦然?这也会自动覆盖后退按钮吗?