开启live选项后,Windows桌面端没有音量条
Opened this issue · 4 comments
liziwl commented
oyuyue commented
有配置 volume
这个控制项吗?在 controls
和 bpControls
参数里面
liziwl commented
多谢,原来是我没有配置。
liziwl commented
如果我自定义了配置会导致另一个问题,文档上说
需要注意,控制条参数会根据其他参数不同而不同。如果 isTouch 是 true,则不会包括 volume。
但是我自定义了后,就都会包含volume了。
这是我的配置
{
bpControls: {
650: [
['play', 'volume', 'time', 'web-fullscreen', 'fullscreen'],
[],
['spacer', 'airplay'],
]
},
controls: [
['play', 'volume', 'time', 'spacer', 'airplay', 'web-fullscreen', 'fullscreen'],
],
live: true,
}
liziwl commented
如果我自定义了配置会导致另一个问题,文档上说
需要注意,控制条参数会根据其他参数不同而不同。如果 isTouch 是 true,则不会包括 volume。
但是我自定义了后,就都会包含volume了。
这是我的配置
{ bpControls: { 650: [ ['play', 'volume', 'time', 'web-fullscreen', 'fullscreen'], [], ['spacer', 'airplay'], ] }, controls: [ ['play', 'volume', 'time', 'spacer', 'airplay', 'web-fullscreen', 'fullscreen'], ], live: true, }
参考作者的实现,解决了。自行获取是否为触摸屏,然后设定 controls 和 bpControls即可。