如何在电子应用程序上获得圆角? [英] How to get rounded corners on an Electron app?

查看:44
本文介绍了如何在电子应用程序上获得圆角?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在尝试在我正在制作的 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: dragin 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

这篇关于如何在电子应用程序上获得圆角?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆