我有一个 HTML 文件,其中包含背景视频和箭头的小图片。它引用了一些 CSS 文件,并且在大多数情况下它非常标准。我在一个名为Brackets的程序中编写了代码 。Brakets 有一项功能,可以在您编写代码时在浏览器中为您运行网站,这样您就可以实时查看更改,并且页面在那里看起来很完美,但是当我使用浏览器手动打开 HTML 文件时,我得到的只是黑屏。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/CSS/main.css">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>LA Apparel</title>
<style>
#video-bg {
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
overflow: hidden;
}
#video-bg > video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* 1. No object-fit support: */
@media (min-aspect-ratio: 16/9) {
#video-bg > video { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
#video-bg > video { width: 300%; left: -100%; }
}
/* 2. If supporting object-fit, overriding (1): */
@supports (object-fit: cover) {
#video-bg > video {
top: 0; left: 0;
width: 100%; height: 100%;
object-fit: cover;
}
}
</style>
</head>
<body>
<div id="video-bg">
<video autoplay="autoplay" loop="true">
<source type="video/mp4" src="/dasvi.mp4">
<source type="video/webm" src="/dasvi.webm">
</video>
</div>
<img class="arr" src="/images/prenup/arrow.png">
</body>
</html>
我的问题是:我的代码或我组织/引用文件的方式是否存在问题,或者浏览器是否经常不呈现基于本地的视频文件,并且当我将它放在服务器上时会起作用?谢谢。