为了账号安全,请及时绑定邮箱和手机立即绑定

想用react-transition-group实现一个路由切换过度效果,但是无效

想用react-transition-group实现一个路由切换过度效果,但是无效

ibeautiful 2018-12-20 18:15:17
参照react-transition-group官网v2的说明和react-routerv4的例子,关键代码如下实际并没有效果,我把react-transition-group切换到v1用CSSTransitionGroup也是没有效果的。
查看完整描述

1 回答

?
慕斯王

TA贡献1864条经验 获得超2个赞

        <Route render={({location}) => (

          <div>

            <Route exact path="/" render={() => (<Redirect to="/roomMain"/>)}/>

            <TransitionGroup>

              <CSSTransition key={location.key}

                             timeout={{enter: 500, exit: 300}}

                             classNames="fade">

                <Switch location={location}>

                  {routes.map((route, index) => {

                    if (route.protected === 'yes') {

                      return (

                        <PrivateRoute location={location}

                                      key={index}

                                      path={route.path}

                                      component={route.component}

                                      exact/>

                      )

                    } else {

                      return (

                        <Route location={location}

                               key={index}

                               path={route.path}

                               component={route.component}

                               exact/>

                      )

                    }

                  })}

                </Switch>

              </CSSTransition>

            </TransitionGroup>

          </div>

        )}/>


查看完整回答
反对 回复 2019-01-23
  • 1 回答
  • 0 关注
  • 655 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信