如何在电子应用程序上获得圆角?
我目前正在尝试在我正在制作的 Electron 应用程序上获得圆角.目前,我尝试了几乎所有在线可用的解决方案,但没有一个有任何区别.
I am currently trying to get rounded corners on an Electron application I'm making. I have tried nearly every solution available on-line at the moment, but none of them make any difference.
如何绕过 Electron 应用程序的四角?
How can I round the corners of my Electron app?
制作无框透明窗口
const myWindow = new BrowserWindow({
transparent: true,
frame: false
})
并且在渲染器中有这样的东西,或者直接将样式应用到 body 标签
And have something like this in the renderer, or apply the style directly to the body tag
<div style="width: 500px; height: 500px; border-radius: 5px">My window content</div>
只需确保添加一个具有 -webkit-app-region:drag
的自定义窗口标题栏,以使窗口可从此元素拖动.
Just make sure to also add a custom window titlebar that has -webkit-app-region: drag
in order to make the window dragable from this element.
查看电子文档了解更多信息;)https://github.com/electron/electron/blob/master/docs/api/frameless-window.md#transparent-window
Check out the Electron Docs for further informations ;) https://github.com/electron/electron/blob/master/docs/api/frameless-window.md#transparent-window