如何在电子应用中制作闪屏?

时间:2017-11-11 19:58:59

标签: electron

我正在角2和电子的帮助下进行应用。 我想在此添加一个启动画面。我不知道该怎么做。请帮帮我......

app.on('ready', () => {
  // create main browser window
  mainWindow = new BrowserWindow({
      titleBarStyle: 'hidden',
      width: 1920,
      height: 1080,
      show: false // don't show the main window
  });
  // create a new `splash`-Window 
  splash = new BrowserWindow({width: 810, height: 610, transparent: true, frame: false, alwaysOnTop: true});
  splash.loadURL(`file://${__dirname}/splash.html`);
  mainWindow.loadURL(`file://${__dirname}/index.html`);

  // if main window is ready to show, then destroy the splash window and show up the main window
  mainWindow.once('ready-to-show', () => {
    splash.destroy();
    mainWindow.show();
  });
});

我也很困惑,在哪里放这个splash.html文件。

0 个答案:

没有答案