我目前正在从事一个有角度的项目。在该项目中,我想将视频添加为所有组件的背景。我该怎么办。
答案 0 :(得分:0)
将以下代码添加到app.component.html
<video autoplay muted loop id="myVideo">
<source src="path_to_video" type="video/mp4">
Your browser does not support HTML5 video.
</video>
和
将以下代码添加到app.component.css
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
/* Add some content at the bottom of the video/page */
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}
/* Style the button used to pause/play the video */
#myBtn {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
}
#myBtn:hover {
background: #ddd;
color: black;
}
有关更多详细信息,请遵循this link。
希望这对您有用。