0
我試圖在路由更改上做簡單的淡入淡出動畫,但它不起作用。Angular 4路由更改動畫
我的動畫文件是這樣的:
export class RouterAnimations {
static animate() {
return trigger('routerTransition', [
state('void', style({ opacity: 0 })),
state('*', style({ opacity: 1 })),
transition(':enter', [
style({ opacity: 0 }),
animate('0.4s ease')
]),
transition(':leave', [
style({ opacity: 1 }),
animate('0.4s ease')
])
]);
};
};
我的組件是這樣的:
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['../vitrine.component.css', './home.component.css'],
animations: [RouterAnimations.animate()]
})
export class HomeComponent implements OnInit {
@HostBinding('@routerTransition')
public routerTransition = true;
constructor() { }
ngOnInit() {
}
}
我發現,如果我把狀態的position: fixed
,它的工作原理,但是當動畫完成該視圖已修復,並且應用程序中的佈局被破壞。
它沒有工作添加
position: 'relative'
。我改變了狀態中的不透明度,並且工作正常,但動畫突然完成而不用等待配置的時間。 – tiagor87嘗試將您的家庭內容移至子組件並讓HomeComponent僅處理動畫 –
同樣的問題,動畫會突然停止。 – tiagor87