Angular2を使用しています。
今、私はDIVアイテムを選択するこの方法を知っています:
<div #aaa>
</div>
@ViewChild('aaa') private aaa: ElementRef;
ngAfterViewInit() {
let item = this.aaa.nativeElement;
item.style.top = '10px';
}
そのアイテムを選択するRxJS Observableの方法はありますitem.style.top = '10px';
か? ありがとう