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
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
Post a Comment