angular2能够为全局添加路由跳转动画吗?可以的话该怎么添加

我现在要为每个路由跳转都添加一个动画,按照官网的demo可以实现,不过得一个一个组件引入animations,没有一种全局设置动画的吗,使得不用在每个组件中又引入一次
我现在每个组件都得引入配置好的Animations,类似下面这样:

import { routeAnimation } from '../../animations';


@Component({

  selector: 'user-center',

  templateUrl: './user-center.component.html',

  styleUrls: ['./user-center.component.less'],

  animations: [routeAnimation]

})


慕丝7291255
浏览 443回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript