在 AngularJS node-webkit 应用程序中使用无框架启动画面(无 tittlebar 和 menubar )

Use a frame less splash screen (no tittlebar and menubar ) in AngularJS node-webkit application

有什么方法可以在 node-webkit 应用程序中显示无框架启动画面? 我目前的 package.json 如下所示

{
"name": "myapp",
"main": "index.html",
"window": {
    "toolbar": false,
    "width": 590,
    "height": 490,
    "icon": "./images/app_icon.png",
    "title": "My App Tittle"
  },
"version":"2014"
}

如果您在 window 对象中设置 "frame": false(在您的 package.json 文件中),它将使您的主 window 无框架。从那里你只需要创建一个暂停,然后生成一个新的 window 并加载你的主应用程序。