足球游戏_中国足彩网¥体育资讯$

html5桌面通知(Web Notifications)实例解析
来源:易贤网 阅读:3020 次 日期:2014-07-08 18:54:59
温馨提示:易贤网小编为您整理了“html5桌面通知(Web Notifications)实例解析”,方便广大网友查阅!

这篇文章主要为大家介绍了html5桌面通知(Web Notifications)实例,对于进行html5网站建设非常有用!需要的朋友可以参考下。

html5桌面通知(Web Notifications)对于需要实现在新消息入线时,有桌面通知效果的情况下非常有用,在此简单介绍一下这个html5的新属性。

这里有个不错的demo:html5 web notification demo

从上面这个demo中 我们就可以获取所需要的基本核心代码,如下:

代码如下:

<script>

var Notification = window.Notification || window.mozNotification || window.webkitNotification;

Notification.requestPermission(function (permission) {

// console.log(permission);

});

function show() {

var instance = new Notification(

"test title", {

body: " test message"

}

);

instance.onclick = function () {

// Something to do

};

instance.onerror = function () {

// Something to do

};

instance.onshow = function () {

// Something to do

};

instance.onclose = function () {

// Something to do

};

return false;

}

</script>

其中:Notification.requestPermission 这句代码的功能就是向用户请求权限允许。

通过以上的例子,基本思路我们已经有了,首先加载文档时,就向用户请求权限,获取权限后以后都so easy了。

代码如下:

window.addEventListener('load', function () {

// At first, let's check if we have permission for notification

if (Notification && Notification.permission !== "granted") {

Notification.requestPermission(function (status) {

if (Notification.permission !== status) {

Notification.permission = status;

}

});

}

});

火狐下 验证是通过的,但是在chrome下总是出不来,后来发现这样一段话

代码如下:

Not a Bug, Feature.

Desktop Notifications can only be triggered via a user action. Typing into the

JavaScript console has the same effect as raw javascript code embedded into the web

page (no user action). Typing the javascript into the location bar, however,

represents a user-action (the user is intentionally visiting a javascript link to

enable notifications, probably for sites that tend to use href="javascript:" instead

of onclick="".

I'm pretty sure this is a non-issue.

原来在chrome下是必须要用户手动触发的,否则,chrome浏览器会无视这段的js

但是在我们网站里肯定不可能加一个按钮或者超链接来显式的让用户授权吧,好吧, 实际上这也不是个事情,我们可以在用户经常点的按钮上顺便处理下这个授权就好,在chrome下是一次授权终身有用。除非你进入设置把他禁了。

整合一下,代码如下:

代码如下:

function showMsgNotification(title, msg){

var Notification = window.Notification || window.mozNotification || window.webkitNotification;

if (Notification && Notification.permission === "granted") {

var instance = new Notification(

title, {

body: msg,

icon: "image_url"

}

);

instance.onclick = function () {

// Something to do

};

instance.onerror = function () {

// Something to do

};

instance.onshow = function () {

// Something to do

// console.log(instance.close);

setTimeout(instance.close, 3000);

};

instance.onclose = function () {

// Something to do

};

}else if (Notification && Notification.permission !== "denied") {

Notification.requestPermission(function (status) {

if (Notification.permission !== status) {

Notification.permission = status;

}

// If the user said okay

if (status === "granted") {

var instance = new Notification(

title, {

body: msg,

icon: "image_url"

}

);

instance.onclick = function () {

// Something to do

};

instance.onerror = function () {

// Something to do

};

instance.onshow = function () {

// Something to do

setTimeout(instance.close, 3000);

};

instance.onclose = function () {

// Something to do

};

}else {

return false

}

});

}else{

return false;

}

}

中国足彩网信息请查看IT技术专栏

中国足彩网信息请查看网页制作
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 足球游戏_中国足彩网¥体育资讯$ 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标