0

我有一个 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>

我的问题是:我的代码或我组织/引用文件的方式是否存在问题,或者浏览器是否经常不呈现基于本地的视频文件,并且当我将它放在服务器上时会起作用?谢谢。

左参考图像是在括号中运行的文件右是手动在 chrome

4

1 回答 1

5

您的 URL 是相对于文档根目录的。在内部这是有效的,因为您正在处理127.0.0.1:33567,但是在您的浏览器中查看时,它开始寻找file:///dasvi.mp4,我相当确定它不存在;)

在本地测试时,你应该在服务器上运行东西,就像 Brackets 所做的那样,否则你会遇到这样的问题。

于 2014-07-07T09:23:36.707 回答