|
@ -1,4 +1,4 @@ |
|
|
const {app, BrowserWindow} = require('electron') |
|
|
|
|
|
|
|
|
const {app, BrowserWindow} = require('electron'); |
|
|
|
|
|
|
|
|
function createWindow() { |
|
|
function createWindow() { |
|
|
// 创建浏览器窗口
|
|
|
// 创建浏览器窗口
|
|
@ -6,8 +6,8 @@ function createWindow() { |
|
|
width: 1024, |
|
|
width: 1024, |
|
|
height: 600, |
|
|
height: 600, |
|
|
kiosk: true, |
|
|
kiosk: true, |
|
|
frame: true |
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
frame: false |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
// 加载index.html文件
|
|
|
// 加载index.html文件
|
|
|
win.loadFile('index.html') |
|
|
win.loadFile('index.html') |
|
|