CSS之实现视频背景

1.新增<video>

<video class="video-background" autoplay muted loop>
  <source src="../../assets/starry-sky.mp4" type="video/mp4" />
  Your browser does not support the video tag.
</video>

2.新增CSS样式

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

 

posted @ 2023-09-12 15:43  罗毅豪  阅读(123)  评论(0编辑  收藏  举报