redux-router针对不同页面和后退按钮的不同转换

时间:2016-03-16 16:32:10

标签: css-transitions react-router react-router-redux

我正在使用redux-router编写一个应用程序,我使用ReactCSSTransitionGroup在页面之间设置动画,如下所示:

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。如何根据用户是从index移动到article反之亦然,我将如何显示不同的过渡?这还会自动覆盖后退按钮吗?

0 个答案:

没有答案