您的位置:首页 > 其它

Chrome桌面通知

2016-12-06 15:31 211 查看
https://www.oschina.net/code/snippet_2012583_51015

开启桌面提醒:三道杠-显示高级设置-内容设置-通知-允许所有网站显示桌面通知

<!DOCTYPE html>
<html>
<head>
<title>Google 桌面通知</title>
</head>
<body>
<button onclick="notifyMe()">Notify me!</button>
<script type='text/javascript'>
function notifyMe() {

var title = "new message";
var options = {
body: "message content",
icon: "http://img.sobot.com/chatres/common/face/admin.png"
};

// Let's check if the browser supports notifications
if (!("Notification" in window)) {
alert("This browser does not support desktop notification");
}

// Let's check whether notification permissions have already been granted
else if (Notification.permission === "granted") {
// If it's okay let's create a notification
var notification = new Notification(title, options);
notification.onshow = function() {
setTimeout(function() {
notification.close();
}, 3000);
};
}

// Otherwise, we need to ask the user for permission
else if (Notification.permission !== 'denied') {
Notification.requestPermission(function (permission) {
// If the user accepts, let's create a notification
if (permission === "granted") {
var notification = new Notification(title, options);
notification.onshow = function() {
setTimeout(function() {
notification.close();
}, 3000);
};
}
});
}

// At last, if the user has denied notifications, and you
// want to be respectful there is no need to bother them any more.
}
</script>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: