我计划将javascript Notifications API功能添加到我正在构建的网络应用中。
我看了一下MDN网站上的example:
function spawnNotification(theBody, theIcon, theTitle) {
var options = {
body: theBody,
icon: theIcon
};
var n = new Notification(theTitle, options);
}
它允许将图像的URL(icon
)指定为通知弹出框中的图标。由于我使用bootstrap和glyphicons,有没有办法可以使用图标字体中的一个图像作为通知图标?
答案 0 :(得分:0)
我尝试使用this answer中描述的技术将html包装到数据URI中,但似乎没有用,因此似乎没有使用Notifications API的选项。
您可以考虑改用Bootstrap Notify plugin,它似乎支持a class for a font icon in the options。