【问题标题】:HTML CSS Add background Video like background image [closed]HTML CSS添加背景视频,如背景图片[关闭]
【发布时间】:2020-10-18 06:22:17
【问题描述】:

我有这个例子:https://codesandbox.io/s/festive-architecture-rqof6?file=/index.html

我想添加像图像背景一样的视频背景 例如这样的 mp4 视频: http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4

【问题讨论】:

  • SO 不是免费的代码编写服务,请您自己尝试实现这一点,如果在此过程中出现任何问题。我们很乐意提供帮助。
  • 也可以在持有video标签的div上使用z-index来设置在下层。

标签: javascript html css video background


【解决方案1】:

第 1 步)添加 HTML:

<!-- The video -->
<video autoplay muted loop id="myVideo">
  <source src="rain.mp4" type="video/mp4">
</video>

<!-- Optional: some overlay text to describe the video -->
<div class="content">
  <h1>Heading</h1>
  <p>Lorem ipsum...</p>
  <!-- Use a button to pause/play the video with JavaScript -->
  <button id="myBtn" onclick="myFunction()">Pause</button>
</div>

第 2 步)添加 CSS:

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

第 3 步)添加 JavaScript:

或者,您可以添加 JavaScript 以通过单击按钮暂停/播放视频:

<script>
// Get the video
var video = document.getElementById("myVideo");

// Get the button
var btn = document.getElementById("myBtn");

// Pause and play the video, and change the button text
function myFunction() {
  if (video.paused) {
    video.play();
    btn.innerHTML = "Pause";
  } else {
    video.pause();
    btn.innerHTML = "Play";
  }
}
</script>

Source

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2015-01-10
    • 1970-01-01
    • 2014-09-22
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-01-09
    • 1970-01-01
    相关资源
    最近更新 更多