【CSS】css video 背景全屏视频

效果

image

实现

    <video autoplay muted loop>
      <source src="@/assets/res-kg/video-kg.mp4" type="video/mp4" />
    </video>
  video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
posted @ 2022-10-13 10:56  努力挣钱的小鑫  阅读(92)  评论(0编辑  收藏  举报