我在一个玩家内部加载了一个新的vimeo id选项。 视频已加载并可在播放器内播放,但不使用选项(肖像,标题,...)。
这是用于创建播放器的代码(准备好了)
var iframe = $('#vimeoContainer');
var options = {
id : 191611447,
portrait: 0,
title : 0,
byline: 0,
};
var player = new Vimeo.Player(iframe, options);
这是加载视频的代码,这个玩家
player.loadVideo(sl).then(function(id) {
// the video successfully loaded
}).catch(function(error) {
switch (error.name) {
case 'TypeError':
// the id was not a number
break;
case 'PasswordError':
// the video is password-protected and the viewer needs to enter the
// password first
break;
case 'PrivacyError':
// the video is password-protected or private
break;
default:
// some other error occurred
break;
}
});
感谢您的帮助和时间
答案 0 :(得分:0)
您将标题和副标题设置为0(假),因此标题和副标题不显示,您将得到所需的内容。要解决此问题,请不要设置选项(将其删除)或将其设置为1 / true。
var options = {
id : 191611447,
portrait: 0,
title : true, // its the default anyway
byline: true, // its the default anyway
};
或:
var options = {
id : 191611447,
portrait: 0,
};