gpt4 book ai didi

html - 并排、居中和响应式制作两个 vimeo 视频

转载 作者:太空宇宙 更新时间:2023-11-04 13:12:31 24 4
gpt4 key购买 nike

我必须观看 Vimeo 视频,并且我试图让它们并排放置并在计算机观看它们时居中。然后每当小屏幕(如 iPhone)正在查看它们时,我希望右边的屏幕落在左边的下方并适合 body 的大小。

这是我目前所拥有的。 HTML:

<div class="vimeo-wrapper">
<div class="vimeo-video-1 vimeo-standard">
<iframe src="//player.vimeo.com/video/" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen align="middle" seamless></iframe>
</div>
<div class="vimeo-video-2 vimeo-standard">
<iframe src="//player.vimeo.com/video/" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen align="middle" seamless></iframe>
</div>
</div>

CSS:

.vimeo-standard {
width:500px;
height:auto;
position:relative;
margin: 10px auto;
float: left;
}
.vimeo-video-2 {
margin-left: 15px;
}
.vimeo-wrapper {
width: 100%;
position: relative;
margin: 0 auto;
}

@media (max-width:767px) {
.vimeo-standard {
position: relative;
padding-bottom: 56.25%; /* 16/9 ratio */
padding-top: 30px; /* IE6 workaround*/
height: 0;
overflow: hidden;
}
.vimeo-video-2 {
margin-left: 0;
}
.vimeo-standard iframe, .vimeo-standard object, .vimeo-standard embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}

@media (min-width:768px) and (max-width:1199px) {
.vimeo-standard iframe {
width: 352px;
height: 198px;
}
.vimeo-standard {
width: 352px;
}
.vimeo-video-2 {
margin-left: 10px;
}
}

我已经为它创建了一些响应式 CSS,但我很难做到恰到好处,以便它在全屏时居中、响应式和并排。

我应该将 HTML 和 CSS 更改为什么才能执行此操作?

最佳答案

我已经编辑了你的 css,它现在更少了并且完全响应了。我添加了一些额外的 borders 以便您可以识别标记中每个 div 的边界,您可以删除它们。

将容器中的元素居中的关键是给予 position:relativemargin:0 auto

是的,每当您需要在容器内使用 float 对象时,您需要使用 clearfix 以便容器可以重置其 height 属性

Check it at fiddle

 .vimeo-wrapper {
max-width: 980px;
position: relative;
margin: 0 auto;
border: 1px solid green;
}

.vimeo-standard {
float: left;
height: 300px;
width: 47%;
border: 1px solid #000;
margin: 10px;
}

iframe {
width: 100%;
height: 100%;
}


@media (max-width:767px) {

.vimeo-standard {
float: none;
width: 80%;
margin: 0 auto;
padding-bottom: 10px;
}
}

.clearfix:before,
.clearfix:after {
content: " "; /* 1 */
display: table; /* 2 */
}

.clearfix:after {
clear: both;
}

关于html - 并排、居中和响应式制作两个 vimeo 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24598508/

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