admin管理员组文章数量:1342902
Sorry, I'm not sure why this is so hard. Is it possible to change the background color from black to white.
Fiddle link: /
<iframe src=";amp;byline=0&portrait=0&color=ffffff&autoplay=1" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
Sorry, I'm not sure why this is so hard. Is it possible to change the background color from black to white.
Fiddle link: http://jsfiddle/nicktest2222/MF9Q2/2/
<iframe src="https://player.vimeo./video/86019637?title=0&byline=0&portrait=0&color=ffffff&autoplay=1" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
Share
asked Mar 1, 2014 at 0:45
NickNick
5926 gold badges12 silver badges21 bronze badges
1
- Why show any background? Adjust the padding-bottom in your fiddle and it won't be visible... – Rick Davies Commented Mar 27, 2014 at 2:40
3 Answers
Reset to default 5According to the link below Vimeo forum thread, this cannot be done.
http://vimeo./forums/topic:109827
2 years late...but I wound up here looking for an answer to the same question. Eventually got it figured out, try something like this:
<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./video/66140585' frameborder='0' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
A workaround is to hide the player until it has been preloaded and ready.
<iframe id="my-video" class="my-video" src="https://player.vimeo./video/126091504?api=1" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
Set your video to be hidden by default
<style>
.my-video {
visibility: hidden;
}
.my-video.ready {
visibility: visible;
}
</style>
Then preload the video and listen for it to be ready:
<script>
var player = $('#my-video');
var playing = false;
function onMessageReceived(e) {
// Handle messages from the vimeo player only
if (!(/^https?:\/\/player.vimeo./).test(e.originalEvent.origin)) {
return false;
}
var data = JSON.parse(e.originalEvent.data);
switch (data.event) {
case 'ready':
onReady();
break;
case 'playProgress':
if(!playing) {
post('pause');
} else {
// wait for video to be ready before showing it to avoid flicker
setTimeout(function() {
player.addClass('ready');
}, 100);
}
break;
}
function post(action, value) {
// Helper function for sending a message to the player
var data = {
method: action
};
if(value) {
data.value = value;
}
var message = JSON.stringify(data);
player[0].contentWindow.postMessage(data, '*');
}
function onReady() {
//add playProgress listener
post('addEventListener', 'playProgress');
//preload video
post('play');
}
$(window).on('message', onMessageReceived);
</script>
本文标签: javascriptChange Vimeo player background colorStack Overflow
版权声明:本文标题:javascript - Change Vimeo player background color - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743683378a2521493.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论