在 ngx-embeded-video 的帮助下,我的 angular8 应用程序中有视频播放器,我需要禁用默认播放器选项,如暂停、最大窗口、音量、播放选项。此外,该视频需要在该弹出窗口上播放所有需要启用的播放器选项的角度材质模式弹出窗口。视频播放如下所示 当用户单击此视频时,角度材料模态需要打开并播放相同的视频,我已尝试打开模型但无法正常工作,我需要这方面的帮助。html:
ts:
import { EmbedVideoService } from 'ngx-embed-video';
import { CarPopupModalComponent } from '../car/car-popup-modal/car-popup-modal.component'
export class CarComponent implements OnInit {
videos: any;
vimeoUrl = 'https://vimeo.com/197933516';
constructor(private embedService: EmbedVideoService){
this.videos = this.embedService.embed(this.vimeoUrl);
}
openCarDialog(): void {
console.log('inside the modal');
this.dialog.open(CarPopupModalComponent, {
width: '250px',
data: {}
})
}
}