0
点赞
收藏
分享

微信扫一扫

CSS之实现视频背景

岛上码农 2023-10-27 阅读 27

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;
}

 



举报

相关推荐

0 条评论