openvidu/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.html

20 lines
634 B
HTML
Raw Normal View History

<div id="layout" class="bounds">
<div
class="OT_root OT_publisher"
id="localUser"
*ngFor="let stream of localParticipant | connections"
[ngClass]="{ OV_small: !stream.streamManager?.stream?.videoActive }"
>
<ng-container *ngTemplateOutlet="streamTemplate; context: { $implicit: stream }"></ng-container>
</div>
<div
*ngFor="let stream of remoteParticipants | connections"
class="OT_root OT_publisher"
id="remote-participant"
[ngClass]="{ OV_small: !stream.streamManager?.stream?.videoActive }"
>
<ng-container *ngTemplateOutlet="streamTemplate; context: { $implicit: stream }"></ng-container>
</div>
</div>