当我第一次加载视频播放器时,音量滑块设置为0,但音量控制显示为3级(音量打开,因此音量按钮正确,而滑块不正确)。触摸音量滑块或音量按钮后,问题会自行解决。
如何使滑块和音量按钮第一次同步?
提前感谢!
发布于 2015-10-06 08:40:14
默认情况下,音量设置为最大。你能告诉我你用的是哪个版本的video.js吗?尽管检查以下命令是否对您有用
// get the current volume of the media
var howLoudIsIt = myPlayer.volume();
// set the volume to a new value
myPlayer.volume(0.5);
// 0 is off (muted), 1.0 is all the way up, 0.5 is half way.
https://stackoverflow.com/questions/32915609
复制