【发布时间】:2018-09-20 18:07:57
【问题描述】:
我在互联网上做了很多研究,但这个问题并不完全相同。我想使用 <iframe> 标签嵌入来自 vimeo 的视频。我也试过这段代码:
.video-responsive{
overflow:hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}
.video-responsive iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}
<div class="video-responsive">
<iframe width="420" height="315" src="https://www.vimeo.com" frameborder="0" allowfullscreen></iframe>
</div>
但如果你有一个大屏幕,它也会变得更大,这看起来不太好。我只希望它收缩不大于提供的width 和height。
【问题讨论】:
标签: video responsive-design vimeo