抱歉,我不确定为什么这么难。是否可以将背景颜色从黑色更改为白色。
小提琴链接:http://jsfiddle.net/nicktest2222/MF9Q2/2/
<iframe src="https://player.vimeo.com/video/86019637?title=0&byline=0&portrait=0&color=ffffff&autoplay=1" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
最佳答案
迟到了2年...但是我最后在这里寻找相同问题的答案。最终弄明白了,尝试这样的事情:
<style>
.embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
}
.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='http://player.vimeo.com/video/66140585' frameborder='0' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
关于javascript - 更改Vimeo播放器背景色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22108553/