答案 0 :(得分:4)
他,我是Muno的开发者。也许我可以帮忙。
我使用browserWindow选项:
const {width, height} = electron.screen.getPrimaryDisplay().workAreaSize;
let options = {
show: false,
frame: false,
center: !isDev,
titleBarStyle: 'hidden',
width: Math.round((width / 100) * 85),
height: Math.round((height / 100) * 85),
};
另一部分只是CSS,我将此片段用于交通灯按钮: https://codepen.io/atdrago/pen/yezrBR
希望这会有所帮助。你在做什么?