我一直卡在試圖使我的電腦上的視頻成爲背景中的視頻。我的視頻標題爲「runbg.avi」,與我的HTML和CSS文件位於同一文件夾中。鏈接到本地視頻文件的視頻背景HTML/CSS
這些是我訪問搜索答案的許多網站中的幾個。
Using file:// instead of http:// when trying to get video from my computer rather than the web.
I can point to video on the web but not locally.
我的程序爲止。
/* BACKGROUND */
video#vid {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background-size: cover;
margin: 0 auto;
}
<!DOCTYPE html>
<head>
<title>Seb's Fitness</title>
<link rel = "stylesheet"
type = "text/css"
href = "css.css" />
<video autoplay loop poster="" id="vid">
<source src="file://runbg.avi" type="video/avi">
</video>
有一個問題在這裏? – j08691
如何鏈接到本地視頻文件? –
你錯過
元素嗎? –