LG TV WebOS 视频在 JavaScript 上退出全屏
LG TV WebOS Video Exit Fullscreen on JavaScript
我制作了一个可以加载、播放和停止视频的应用程序。它可以使用以下代码请求全屏:
if (this.video.requestFullScreen) {
this.video.requestFullScreen();
} else if (this.video.webkitRequestFullScreen) {
this.video.webkitRequestFullScreen();
} else if (this.video.mozRequestFullScreen) {
this.video.mozRequestFullScreen();
}
在最近发生的重大软件更新之前,它可以使用后退按钮退出全屏模式。现在不可能了,因为遥控器上的“后退”按钮会打开智能电视菜单栏。
有人可以帮助软件“退出全屏”,因为标准 JS 代码不起作用。示例在这里:
if (document.fullscreenElement) {
document.exitFullscreen();
}
显然 webOS 中的 Document 对象是有限的,但我确定必须有退出视频全屏模式的方法。
我发现 LG 浏览器是在 WebKit 上制作的,并使用了这里描述的切换全屏的方法:
Toggle Fullscreen exit
我制作了一个可以加载、播放和停止视频的应用程序。它可以使用以下代码请求全屏:
if (this.video.requestFullScreen) {
this.video.requestFullScreen();
} else if (this.video.webkitRequestFullScreen) {
this.video.webkitRequestFullScreen();
} else if (this.video.mozRequestFullScreen) {
this.video.mozRequestFullScreen();
}
在最近发生的重大软件更新之前,它可以使用后退按钮退出全屏模式。现在不可能了,因为遥控器上的“后退”按钮会打开智能电视菜单栏。
有人可以帮助软件“退出全屏”,因为标准 JS 代码不起作用。示例在这里:
if (document.fullscreenElement) {
document.exitFullscreen();
}
显然 webOS 中的 Document 对象是有限的,但我确定必须有退出视频全屏模式的方法。
我发现 LG 浏览器是在 WebKit 上制作的,并使用了这里描述的切换全屏的方法:
Toggle Fullscreen exit