main.js 294 B

12345678910111213141516
  1. const { app, BrowserWindow } = require('electron')
  2. function createWindow () {
  3. const win = new BrowserWindow({
  4. width: 100,
  5. height: 100,
  6. resizable: false,
  7. frame: false,
  8. transparent: true
  9. })
  10. win.loadFile('index.html')
  11. }
  12. app.whenReady().then(() => {
  13. createWindow()
  14. })