如何转换
HTML
<a-entity id="fading-cube" geometry="primitive: box" material="opacity: 1">
<a-animation attribute="material.opacity" begin="fade" to="0"></a-animation>
</a-entity>
JS
document.querySelector('#fading-cube').emit('fade');
这是我在 Angular 2 中不起作用的代码。
@ViewChild('fading-cube') fadingCubeInput: any;
fadecube(){
this.renderer.setProperty(this.fadingCubeInput.nativeElement,'emit',"fade")
}