我的HTML代码是:
`<video id="login-animation" poster="assets/img/brand/Example_Frame1.png" autoplay loop muted>
<source src="/assets/img/brand/Example_animation.mp4" type="video/mp4">
</video>`
我的component.ts代码是:
ngAfterViewInit() {
this.videoElement = document.getElementById('login-animation') as HTMLVideoElement;
this.videoElement.play();
}
有时我的this.videoElement.play()会随机返回此dom异常,并且视频无法播放。