我想创建一个覆盖整个屏幕的视频容器
并且容器内的视频覆盖了整个容器,并且不会溢出,这意味着容器可以适应整个屏幕尺寸。
并相应地做出响应。
当前视频正处于全高状态。我不想要
我希望将其高度限制为屏幕尺寸,并且不能滚动。
我的html代码是
<div class="video-container">
<div class="video-wrapper">
<video autoplay controls>
<source src="../../assets/movies/joker.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
</div>
我的CSS代码是:
.video-container {
display: block;
max-width: 100%;
min-width: 200px;
}
.video-wrapper {
background: #000;
border-radius: inherit;
overflow: hidden;
position: relative;
z-index: 0;
}
.video-container video {
border-radius: inherit;
height: auto;
vertical-align: middle;
width: 100%;
}
video {
max-width: 100%;
object-fit: contain;
}
请帮助我解决这个问题。。谢谢。
答案 0 :(得分:0)
CSS:
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
font-size: 17px;
}
video {
position: fixed;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
HTML:
<body>
<script src="./index.js"></script>
<video autoplay controls>
<source src="../../assets/movies/joker.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
</body>
答案 1 :(得分:0)
这样的元标记会有所帮助:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
您需要更改宽度和高度,CSS提供了查看高度和查看宽度的可能性,因此适合屏幕。如上文所述:
.video-wrapper{
height: 100vh;
width: 100vh;
}