You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Electron has a built-in feature to add transparency effects to the window. However, this feature has some limitations:
13
+
14
+
- The transparency effect is only applied to the window frame, not to the window content.
15
+
- In order to apply the transparency effect to the whole window, `transparent` must be set to `true` in the `BrowserWindow` options. This creates a number of bugs which prevents the window from being resized or maximized. (see [this issue](https://github.com/electron/electron/pull/28207))
16
+
17
+
Electron Transparency aims to solve these issues by adding a native module which allows the transparency effect to be applied to the window content.
18
+
19
+
## Usage
20
+
21
+
See the example app [here](https://github.com/ItsPi3141/electron-transparency/tree/main/example)
0 commit comments