gpt4 book ai didi

html - 使用媒体查询时试图将我的背景视频居中

转载 作者:行者123 更新时间:2023-11-28 00:29:57 25 4
gpt4 key购买 nike

这是不可能的吗?整个早上都在努力尝试将我的视频放在中心位置,或者尝试将视频的大小更改为较小,以便它至少可以容纳视频的关键部分,以便用户可以在他们的手机上看到它。最好的解决方案是什么?我一直在研究很多,但找不到任何帮助,这让我想知道在 CSS 中这可能要求太多了吗?除非有另一种选择...请告诉我!非常感谢!

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Courier New', Courier, monospace;
font-size: 1rem;
line-height: 1.5;
color: #333;
overflow-x: hidden;
background-color: whitesmoke;
}

.para {
font-size: 1.5em;
margin: auto 10px;;
}

.v-header {
height: 99vh;
display: flex;
align-items: center;
color: #fff;
}

#jsc {
/*display: none;*/
}

.container {
max-width: 960px;
padding-left: 1rem;
padding-left: 1rem;
margin: auto;
text-align: center;
}
.container h1 {
font-size: 2.5em;
}

section {
display: flex;
}

.fullscreen-video-wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;
}

.fullscreen-video-wrap video {
min-width: 100%;
min-height: 100%;
}

#heading {
font-family: 'Coiny', cursive;
color: white;
font-size: 3rem;
display: none;
}

.header-overlay {
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
background: #225470;
z-index: 1;
opacity: 0.65;
}

.header-content {
z-index: 2;
}

.header-content .jsc {
margin-bottom: 0;
}

.header-content .jsc {
font-size: 1.5rem;
display: block;
padding-bottom: 2rem;
}

.btn {
background: #34b3a0;
color: #fff;
font-size: 1.2rem;
padding: 1rem 2rem;
text-decoration: none;
}


@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px)
and (orientation : portrait) {

#jsc {
height: 150px;
width: 150px;
}

.fullscreen-video-wrap {
position: absolute;
top: 50px;
right: 100px;
}
}

        <div class="fullscreen-video-wrap">

<video src="seaturtle.mp4" autoplay="true" loop="true" muted="true"></video>

</div>

<div class="header-overlay"></div>
<div class="header-content">

<img id="jsc" src="jscc.png">
<h3 id="heading">Personal Training</h3>
<a href="#" class="btn">Contact Me</a>
</div>

</header>

最佳答案

只需将其添加到您的“head”标签中即可。这将根据设备宽度自动调整视频大小。

<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
video {
width: 100%;
height: auto;
}
</style>
</head>

关于html - 使用媒体查询时试图将我的背景视频居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54455503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com