我想制作一个按钮,将我的网站切换为全屏。我不确定怎么办?
答案 0 :(得分:5)
看看google
带来的一点点搜索function toggleFullScreen() {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
}
}
}