我正在尝试找到一种方法来隐藏 vimeo 视频顶部和底部的黑条。我认为可能有一种方法可以用 CSS 来掩盖它们。
我基本上想用下面链接中的图像来实现这个人想要实现的目标,除了我想用嵌入的视频来实现它,同时保持它的响应性。
非常感谢。
HTML
<section class="d5-d13 c5-c13 b5-b13 a5-a13 video">
<div class='embed-container'>
<iframe src='http://player.vimeo.com/video/69252713' frameborder='0'
webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
</section>
CSS
.embed-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
max-width: 100%;
height: auto;
}
.embed-container iframe, .embed-container object, .embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}