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%;
}