在浏览器的通知API

时间:2015-11-03 00:33:58

标签: javascript twitter-bootstrap google-chrome notifications glyphicons

我计划将 Notifications API功能添加到我正在构建的网络应用中。

我看了一下MDN网站上的example

function spawnNotification(theBody, theIcon, theTitle) {
    var options = {
        body: theBody,
        icon: theIcon
    };
    var n = new Notification(theTitle, options);
}

它允许将图像的URL(icon)指定为通知弹出框中的图标。由于我使用,有没有办法可以使用图标字体中的一个图像作为通知图标?

1 个答案:

答案 0 :(得分:0)

我尝试使用this answer中描述的技术将html包装到数据URI中,但似乎没有用,因此似乎没有使用Notifications API的选项。

您可以考虑改用Bootstrap Notify plugin,它似乎支持a class for a font icon in the options