作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试将我计算机上的视频设为背景视频。我的视频名为“runbg.avi”,它与我的 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>
最佳答案
<video autoplay loop poster="" id="vid">
<source src="/runbg.avi" type="video/avi">
</video>
/runbg.avi 表示从根文件夹(/)开始,然后搜索runbh.avi 文件。
关于html - 链接到视频背景 HTML/CSS 的本地视频文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44346041/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!