我正在尝试使用JavaScript检测我的代码是否在具有iframe
的跨源allowfullscreen="true"
中运行。
简单的使用案例:我有一个全屏按钮,我只想显示iframe
是否可以全屏播放,但我还没有找到一个好方法来检测这个!
答案 0 :(得分:0)
毕竟这很简单:)。这是一个跨浏览器的解决方案:
const getFullscreenEnabled = () =>
document.fullscreenEnabled ||
document.webkitFullscreenEnabled ||
document.mozFullScreenEnabled ||
document.msFullscreenEnabled