实验播放器参数
提示
在调用实验播放地址获取实验链接的时候,可以通过传入query参数来改变播放器的配置项。如隐藏顶部logo和按钮、锁定画布等。
播放器参数说明
1. 顶部logo与按钮配置
editor-share-hide 显示或隐藏顶部logo与按钮,默认为显示
editor-share-hide=1
: 隐藏顶部logo与按钮editor-share-hide=0
: 显示顶部logo与按钮
2. 器材菜单配置
setmenu-hidden 显示或隐藏菜单,默认为显示
setmenu-hidden=1
: 隐藏器材菜单setmenu-hidden=0
: 显示器材菜单
代码示例
// 调用获取播放器接口,并且配置隐藏顶部logo与按钮
const options = {
method: 'GET',
headers: {'Content-Type': 'application/json', Authorization: ''}
};
fetch('https://nbapi.nobook.com/v1/url/player?pid=RESCZWLEeqji&uuid=UUID&editor-share-hide=1', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));