0
請,你能給我一個建議,如何適應youtube嵌入視頻瀏覽器大小?我需要完全填寫網站,但我不知道,如何去做。現在我的視頻適合寬度或高度。但我需要兩個。你知道嗎,怎麼做?Youtube嵌入視頻適合瀏覽器大小
我的代碼至今: HTML:
<div id="bg" class="bg background-image">
<div class="embed-container">
<div id="youtube-player"></div> <!-- this row is replaced by iframe with video. i'm using youtube data api.... -->
</div>
</div>
CSS:
html{
height: 100%;
}
body {
min-height: 100%;
}
.bg {
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
left: 0;
top: 0;
z-index: -9999;
}
.background-image {
background: #000;
background-size: cover;
min-height: 100%;
position:absolute;
bottom:0;
left:0;
}
.background-overlay {
background: url('../assets/images/bg_pattern.png') left top;
}
發佈你的代碼,所以有人可以指出該做什麼。 –
可能dublicate的http://stackoverflow.com/questions/15844500/shrink-a-youtube-video-to-responsive-width –