gpt4 book ai didi

javascript - 使用 JavaScript 在浏览器中触发全屏

转载 作者:行者123 更新时间:2023-12-01 02:34:41 26 4
gpt4 key购买 nike

Possible Duplicate:
How to make in Javascript full screen windows (stretching all over the screen)

目前我尝试做类似的事情,当您单击全屏按钮时,当前窗口将变为全屏。我尝试使用以下脚本,但它不起作用。关于如何实现这项工作有什么想法吗?

<script type="text/javascript">
window.onload = maxWindow;

function maxWindow() {
window.moveTo(0, 0);

if (document.all) {
top.window.resizeTo(screen.availWidth, screen.availHeight);
}
else if (document.layers || document.getElementById) {
if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth) {
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
</script>

最佳答案

一些较新的浏览器支持一个新的 API,它可以让您让任何元素占据整个屏幕:

参见http://johndyer.name/native-fullscreen-javascript-api-plus-jquery-plugin/了解更多信息,包括使用该功能的 jQuery 插件。

关于javascript - 使用 JavaScript 在浏览器中触发全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8338736/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com