我想在使用react-router转换时将动画应用于组件,并且我只能在初始加载后执行此操作,但是我也希望在初始安装时看到动画(页面刷新)。
这是我尝试过的。注意transitionAppear: true
没有做任何事情:
class App extends Component {
constructor() {
super();
}
render() {
let path = this.context.router.getCurrentPath();
path = path.substring(0, path.split('/', 2).join('/').length);
return (
Transitions({component: 'div', transitionName: 'fade', transitionAppear: true},
handler({key: path})
)
)
}
}