nw.js: Transparent is a problem

The interface has a problem after setting these two properties!

"transparent":true,
"frame": false

======== TEMPLATE BUG FORM ========

NWJS Version : 0.27.2 Operating System : win10 x64

Expected behavior

After loading a web page, no explicit form should be produced! Please look at the following picture. I set the window transparent, but a toolbar appears after a page with an opaque part in the middle part is loaded! qq 20171221135333

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Comments: 17 (8 by maintainers)

Most upvoted comments

@jtg-gg , My device: Windows 10, Version 10.0.16299.125 package.json:

{
  "name": "6345",
  "main": "index.html",
  "window":{
    "transparent": true,
	"frame":false
   }
}

index.html:

<html>
<title>Test</title>
<body>
<p>Hello</p>
</body>
</html>

image