一旦我激活全屏模式,y溢出就会消失。
Chrome开发者工具显示了这一点:
正如你所看到的,我在我的css中覆盖了:root:-webkit-full-screen-ancestor,我的样式显示为所选样式。 然而,整体状态是“隐藏的”。 Chrome,IE和Firefox正在显示此行为。
答案 0 :(得分:1)
只有使用实施的全屏按钮才会发生错误。 它来自
document.body.requestFullScreen()
用
替换它document.documentElement.requestFullscreen()
解决了......