1

有人知道如何onDone在 angular2 中捕获新动画系统的回调吗?有一个动画 - 我想做一些事情onDone......我在 angular2 的源代码中看到了这个方法的AnimationPlayer界面,但没有任何东西暴露给用户......

最诚挚的问候!非常感谢您的回答!

4

2 回答 2

1

随着即将发布的 RC6 版本,这将通过以下方式得到支持(@animation.done)https ://github.com/angular/angular/commit/45e8e73670b96387fc109921fad299742d3f7cbf

于 2016-08-23T06:00:52.840 回答
0

你有没有尝试过

import {AnimationPlayer} from '@angular/core';
constructor(animationPlayer:AnimationPlayer) {
  animationPlayer.onDone(() => {
    console.log('animation done');
  });
}
于 2016-06-30T05:24:24.587 回答