css实现视频video背景上方文字布局效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现视频video背景上方文字布局效果代码

代码标签: css 视频 video 背景 上方 文字 布局

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  


  
  
<style>
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");
:root {
  --primary-color: #3a4052;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--primary-color) url("//repo.bfw.wiki/bfwrepo/image/61ac6310a18c5.png") no-repeat center center/cover;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  posit.........完整代码请登录后点击上方下载按钮下载查看

网友评论0