electron窗口背景透明无边框(可用于启动页面)
【摘要】
main中注册窗口
窗口配置如下
constreadyConfig = {
width:500,
height:300,
frame:false,
transparent:true,
...
main中注册窗口
窗口配置如下
constreadyConfig = {
width:500,
height:300,
frame:false,
transparent:true,
};
- 1
- 2
- 3
- 4
- 5
- 6
配合页面
如下是我之前用的,主要把背景搞透明
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div
style="
display: flex;
justify-content: center;
height: 200px;
line-height: 200px;
background-color: rgba(255, 255, 255, 0.014);
"
>
<p style="font-size: 45px">正在开启工具箱</p>
</div>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
可以设置一个启动页面 主页面加载完成后 干掉加载页面
文章来源: dmhsq.blog.csdn.net,作者:代码哈士奇,版权归原作者所有,如需转载,请联系作者。
原文链接:dmhsq.blog.csdn.net/article/details/125391358
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)