任何人都知道如何在angular2中捕获新动画系统的onDone
回调?有一个动画 - 我想做一些东西onDone
...我在AnimationPlayer
界面看到angular2这个方法的来源,但没有任何东西暴露给用户......
致以最诚挚的问候!非常感谢你的回答!
答案 0 :(得分:1)
即将发布的RC6版本将通过(@animation.done)
支持:https://github.com/angular/angular/commit/45e8e73670b96387fc109921fad299742d3f7cbf
答案 1 :(得分:0)
你试过吗
import {AnimationPlayer} from '@angular/core';
constructor(animationPlayer:AnimationPlayer) {
animationPlayer.onDone(() => {
console.log('animation done');
});
}