更改Vimeo播放器背景颜色

时间:2014-03-01 00:45:41

标签: javascript css html5 vimeo

抱歉,我不确定为什么这么难。是否可以将背景颜色从黑色更改为白色。

小提琴链接:http://jsfiddle.net/nicktest2222/MF9Q2/2/

<iframe src="https://player.vimeo.com/video/86019637?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff&amp;autoplay=1" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

2 个答案:

答案 0 :(得分:5)

根据Vimeo论坛帖子下面的链接,这是无法做到的。

http://vimeo.com/forums/topic:109827

答案 1 :(得分:3)

迟到了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>