其視頻背景,但它不工作... 這裏的HTML文件:如何遮擋我的視頻背景?
#player {
object-fit: inherit;
position: fixed;
z-index: -1;
height: 100%;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 50);
}
<video autoplay loop class="player" id="player">
<source src="video.mp4" type="video/mp4">
您試圖更改哪種背景?請更具體一些。 – JSONGagnon
要改變CSS中任何東西的背景顏色,使用'background-color:color value with unit',你已經完成了('background'是一個快捷方式屬性,它也可以工作)。如果這不起作用,那麼你必須檢查你的總體語法是否有錯誤。當然,您不能更改實際視頻的背景,因爲這是錄製的一部分。 –
你是不是指'rgba(0,0,0,.50)'? – sol