啥也不说,先上图片和代码。
HTML5桌面消息提示--铂金小猪 HTML5桌面消息提示
其中核心的提示代码为:
function DN() {}//装逼用,大家可以不用这种! DN.prototype.isDN = function() { if(window.webkitNotifications){return true}else{return false}; } DN.prototype.Notify = function(icon, title, content) { if (window.webkitNotifications.checkPermission() == 0) {//检测有木同意本域使用提醒 if(content==""){alert("亲,表调戏我嘛··");return;}; var tip = window.webkitNotifications.createNotification(icon="http://my.oschina.net/img/favicon.ico", title, content); tip.show(); return true; } window.webkitNotifications.requestPermission();//提示是否允许桌面提醒 return false; }
代码很简单,功能也很简单,还有其他的比如页面为“focus”时不显示桌面提醒等等,可以使用本地存储来保存页面的状态。