我想在網頁中顯示一個vimeo視頻全寬。Vimeo全寬
這是現在的樣子:
正如你可以看到黑色的全寬,但沒有視頻。它應該是全寬,不顯示控件,自動播放並循環播放。
我的代碼看起來像現在這樣:
<iframe src="https://player.vimeo.com/video/208176323?autoplay=1&loop=1&background=1" width="100%" height="500px" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
客戶端有VIMEO再加但不Vimeo的親。有人可以幫我弄這個嗎。
UPDATE:
我已經改變了我的代碼如下:
<style>
.embed-container {
position: relative;
padding-bottom: 56.25%;
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%;
}
</style>
<div class='embed-container'><iframe src='https://player.vimeo.com/video/208791851?autoplay=1&loop=1&background=1' frameborder='0' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
但我仍然有底部和頂部的黑色邊框。
我已經創建了一個的jsfiddle,你也可以看到這一點:https://jsfiddle.net/07fkfwz3/。而你可以看到的視頻here沒有任何邊框。
將'body {margin:0}'添加到小提琴中進一步體現了寬度的最大化:) –