自动播放静音视频背景角5

时间:2018-05-16 12:58:34

标签: html5 angular html5-video angular5

我想在我的网站主页顶部添加自动播放静音视频,我使用的是角色5。

有人可以帮忙吗?

提前谢谢!

1 个答案:

答案 0 :(得分:0)

您可以将此代码直接写入您的 component.ts 文件

window.onload = function () {
var element = document.getElementById('video');
element.muted = "muted";}

这是我的html代码。

<video  id="video"><source src="assets/images/intro.mp4" type="video/mp4">
</video>
相关问题