1 Star 0 Fork 0

紫月 / learn_electron_demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
demo6.html 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
1225936350@qq.com 提交于 2020-05-24 21:18 . Electron注册全局快捷键
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<button id="notifyBtn">通知消息</button>
</body>
<script>
var notifyBtn = document.getElementById('notifyBtn');
var option = {
title:'小二,来订单了,出来接客了!',
body:'有大官人刚翻了你的牌子',
}
notifyBtn.onclick = function(){
new window.Notification(option.title,option)
}
</script>
</html>
NodeJS
1
https://gitee.com/ziyue7575/electron_learn_demo.git
git@gitee.com:ziyue7575/electron_learn_demo.git
ziyue7575
electron_learn_demo
learn_electron_demo
master

搜索帮助