树莓派ouxuanac启动器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
328 B

  1. const { app, BrowserWindow } = require('electron')
  2. function createWindow () {
  3. // 创建浏览器窗口
  4. let win = new BrowserWindow({
  5. width: 1024,
  6. height: 600,
  7. kiosk:true,
  8. frame: false
  9. })
  10. // 加载index.html文件
  11. win.loadFile('index.html')
  12. }
  13. app.on('ready', createWindow)