如何使用Chrome桌面通知?我想在我自己的代码中使用它。
更新:这里有一篇博文用一个例子解释了webkit通知。
如何使用Chrome桌面通知?我想在我自己的代码中使用它。
更新:这里有一篇博文用一个例子解释了webkit通知。
当前回答
js是一个新的webkit通知的包装器。它运行得很好。
http://alxgbsn.co.uk/2013/02/20/notify-js-a-handy-wrapper-for-the-web-notifications-api/
其他回答
我制作了这个简单的通知包装器。它可以在Chrome、Safari和Firefox上运行。
可能在Opera、IE和Edge上也有,但我还没有测试过。
只需从这里获取通知.js文件https://github.com/gravmatt/js-notify并将其放入您的页面。
干掉鲍尔
$ bower install js-notify
它是这样工作的:
notify('title', {
body: 'Notification Text',
icon: 'path/to/image.png',
onclick: function(e) {}, // e -> Notification object
onclose: function(e) {},
ondenied: function(e) {}
});
你必须设置标题,但json对象作为第二个参数是可选的。
<!DOCTYPE html>
<html>
<head>
<title>Hello!</title>
<script>
function notify(){
if (Notification.permission !== "granted") {
Notification.requestPermission();
}
else{
var notification = new Notification('hello', {
body: "Hey there!",
});
notification.onclick = function () {
window.open("http://google.com");
};
}
}
</script>
</head>
<body>
<button onclick="notify()">Notify</button>
</body>
这里有关于api的很好的文档,
https://developer.chrome.com/apps/notifications
谷歌的官方视频解释,
https://developers.google.com/live/shows/83992232-1001
js是一个新的webkit通知的包装器。它运行得很好。
http://alxgbsn.co.uk/2013/02/20/notify-js-a-handy-wrapper-for-the-web-notifications-api/
请参见ServiceWorkerRegistration.showNotification
这似乎是一个窗口。webkitNotifications已经被弃用并删除。然而,有一个新的API,它似乎也可以在最新版本的Firefox中工作。
function notifyMe() {
// Let's check if the browser supports notifications
if (!("Notification" in window)) {
alert("This browser does not support desktop notification");
}
// Let's check if the user is okay to get some notification
else if (Notification.permission === "granted") {
// If it's okay let's create a notification
var notification = new Notification("Hi there!");
}
// Otherwise, we need to ask the user for permission
// Note, Chrome does not implement the permission static property
// So we have to check for NOT 'denied' instead of 'default'
else if (Notification.permission !== 'denied') {
Notification.requestPermission(function (permission) {
// Whatever the user answers, we make sure we store the information
if(!('permission' in Notification)) {
Notification.permission = permission;
}
// If the user is okay, let's create a notification
if (permission === "granted") {
var notification = new Notification("Hi there!");
}
});
} else {
alert(`Permission is ${Notification.permission}`);
}
}
codepen