#transparent blur filter

4 messages · Page 1 of 1 (latest)

mild mica
#

How can I apply a blur filter to the transparent or half transparent portion of my window, which is located underneath another window.

wind sonnet
# mild mica How can I apply a blur filter to the transparent or half transparent portion of ...

For Windows and macOS, Electron has options you can add to apply the blur filter. There is no option for Linux, unless you use Glasstron(discontinued and outdated).

For Windows, you can use the following for your BrowserWindow.

...
backgroundMaterial: 'auto'
...

For macOS, you can use the following for your BrowserWindow.

...
vibrancy: 'window'
...

Of course, if you plan to package your app for all platforms, include both:

...
backgroundMaterial: 'auto'
vibrancy: 'window'
...
mild mica