linux - Custom shaped standalone windows app using Electron -


i wondering if possible launch custom shaped independent window/element electron app. chat heads have facebook app in android.

where should start? if not in electron possible other html framework matter.

an example seen in android. looking @ having in mac/windows/linux

an example seen in android. looking @ having in mac/windows/linux

i think looking frameless-windows in electron. when construct browserwindow object pass transparent: true option.

var win = new browserwindow({ transparent: true}); 

if don't want frame around window might want pass frame: false option well.

var win = new browserwindow({ transparent: true, frame: false}); 

note: unfortunately, can't click through frame-window of yet, still working on it. read more here.


Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -