返回介绍

带图带事件的 桌面通知

发布于 2024-09-07 23:55:54 字数 1640 浏览 0 评论 0 收藏 0

网页也可以以桌面弹框的形式进行通知,先看个效果图: 有头像,有标题,有文本, 点击消息通知还能让窗体聚焦 ,真帅。

image.png

代码

function doNotify(title, options = {}, events = {}) {
  const notification = new Notification(title, options);
  for (let event in events) {
    notification[event] = events[event];
  }
}

function notify(title, options = {}, events = {}) {
  if (!("Notification" in window)) {
    return console.error("This browser does not support desktop notification");
  }
  else if (Notification.permission === "granted") {
    doNotify(title, options, events);
  } else if (Notification.permission !== "denied") {
    Notification.requestPermission().then(function (permission) {       
      if (permission === "granted") {
        doNotify(title, options, events);
      }
    });
  }
}
复制代码

示例 tag 还可以用去重消息。

   notify("中奖提示", {
      icon: "https://sf1-ttcdn-tos.pstatp.com/img/user-avatar/f1a9f122e925aeef5e4534ff7f706729~300x300.image",
      body: "恭喜你,掘金签到一等奖",
      tag: "prize"
    }, {
      onclick(ev) {
        console.log(ev);
        ev.target.close();
        window.focus();
      }
    })

参考引用 notification 使用 Web Notifications

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文