2016-11-19 163 views

回答

1

將視頻包裹在具有固有長寬比的另一個元素中,然後將視頻絕對定位在其中。這給了我們流體寬度和合理的高度,我們可以依靠。

<div class="videoWrapper"> 
<iframe src='https://www.liveflightapp.com/embed?key=b1371aa1-dea8-41cd-af74-8fda634b3a5d' width='100%;' height='500px;' frameborder='0' scrolling='no'></iframe> 
</div> 

,然後應用下面的風格屬性..

.videoWrapper { 
    position: relative; 
    padding-bottom: 56.25%; /* 16:9 */ 
    padding-top: 25px; 
    height: 0; 
} 
.videoWrapper iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
} 

可能有助於..

+0

真棒,偉大工程!非常感謝。如果可以的話,將它作爲可接受的答案添加。 –

+0

謝謝@Giacomo Lawrance。 –