gpt4 book ai didi

javascript - Electron 中内容周围的黑色边框

转载 作者:行者123 更新时间:2023-12-03 12:21:20 25 4
gpt4 key购买 nike

我使用 Electron 将使用 Phaser 2 制作的视频游戏转换为 .exe。但在我的内容周围,我有一些边框或边距。

我尝试使用全屏来改变这一点,我也尝试使用useContentSize,但问题没有解决。

这是我的 JS 文件:

const { app, BrowserWindow } = require('electron')

let win;

function createWindow () {
// Cree la fenetre du navigateur.
win = new BrowserWindow({
//width: 886,
//height: 473,
useContentSize : true,
autoHideMenuBar : true,
icon: "favicon.ico",
//met la fenetre sans bordure
//frame : false,
//fullscreen : true,
})

//load the index.html.
win.loadFile('src/junkbuster.html');
win.setMenuBarVisibility(false);
win.setMenu(null);
//win.setContentSize(1700,1200);
}

app.on('ready', function(){
createWindow();

console.log(win.getContentBounds());

//800,600 => 786, 563
console.log(win.getSize()+"=>"+win.getContentSize());

});

这是我的 HTML 文件

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script src="./phaser.js"></script>
<script src="./index.js"></script>
<style type="text/css">
body {
background-color: black;
width:100vw;
height:100vh;
margin:0px;
}
body * {
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
</body>
</html>

最佳答案

根据Issue #9419 ,对我有用的解决方法是避免 mainWindow.setResizable(false) 并使用它:

mainWindow.on('will-resize', (e) => {
//prevent resizing even if resizable property is true.
e.preventDefault();
});

关于javascript - Electron 中内容周围的黑色边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57459082/

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