成都创新互联网站制作重庆分公司

HTML5的Notifycations怎么应用

今天小编给大家分享一下HTML5的Notifycations怎么应用的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

创新互联长期为数千家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为榕城企业提供专业的网站设计制作、网站制作,榕城网站改版等技术服务。拥有十载丰富建站经验和众多成功案例,为您定制开发。

HTML5中的桌面提醒(网络通知)可以在当前页面窗口上放置一个消息框,这个消息框是跨Tab窗口的,这在用户打开多个tab浏览网页时,提醒比较方便,容易让用户看到。只要是webkit内核支持该功能。

该功能在chrome下需要以http方式打开网页才能

启用。桌面提醒功能由window.webkitNotifications对象实现(webkit内核)

window.webkitNotifications对象没有属性,有四个方法:

1.requestPermission()

该方法用于向用户申请消息提醒权限,如果当前没有开放该权限,浏览器将打开授权界面,用户授权后,在对象内部产生一个状态值(一个0、1或2的整数):

0:表示用户同意消息提醒,只在该状态下可以使用信息提醒功能;

1:表示状态,用户既未拒绝,也未同意;

2:表示用户拒绝消息提醒

2.checkPermission()

这个方法用于获取requestPermission()申请到的权限的状态值。

3.createNotification()

这个方法以纯消息的方式创建提醒消息,它接受三个字符串参数:

iconURL:消息在显示中的图标种植地址,

标题:消息的标题,

body:消息主体文本内容

该方法会返回一个Notification对象,可以针对这个对象做更多的设置。Notification

对象的属性与方法:

复制代码代码如下: 

DIR: “”

的onclick:空

的OnClose:空

ondisplay:功能(事件){

的onerror:空

OnShow中:空

replaceId: “”

标签: “”

__ PR oto__:通知

的addEventListener:功能的addEventListener(){[本地代码]}

取消:函数cancel(){[本机代码]}

close:函数close(){[本机代码]}

构造函数:函数Notification(){[本机代码]}

dispatchEvent:函数dispatchEvent(){[本机代码]}

removeEventListener:函数removeEventListener (){[本机代码]}

show:函数show(){[本机代码]}

__proto__:对象

dir:设置消息的分配方向,可取到“ auto”(自动),“ ltr”(从左到右),“ rtl”(从右到左)。

标签:为消息添加标签名。如果设置此属性,当有新消息提醒时,标签相同的消息只显示在同一个消息框,后一个消息框会替换先前一个,否则出现多个消息提示框,但最大值显示3个消息框,超过3个,后继消息通知会被阻塞。

OnShow中:当消息框显示的时候触发该事件;

的onclick:当点击消息框的时候触发该事件;

OnClose中:当消息关闭的时候触发该事件;

的onerror:当出现错误的时候触发该事件;

方法:

addEventListener && removeEventListener:常规的添加和

删除事件方法;显示:显示消息提醒框;

关闭:关闭消息提醒框;

取消:关闭消息提醒框,和close一样;

4.createHTMLNotification()

该方法与createNotification()不同的是,他以HTML方式创建消息,接受一个参数:HTML文件的URL,该方法同时返回Notification对象。

一个实例:

复制代码代码如下: 

<!DOCTYPE HTML>

HTML5中的通知</ title></p><p></ head></p><p><body></p><p><form></p><p><input id =“ trynotification” type =“ button” value =“发送通知” / ></p><p></ form></p><p><script type =“ text / javascript”></p><p>document.getElementById(“ trynotification”)。onclick = function(){</p><p>notify(Math.random());</p><p>};</p><p>函数notify(tab){</p><p>如果(!window.webkitNotifications){</p><p>返回false;</p><p>}</p><p>varPermission = window.webkitNotifications.checkPermission();</p><p>if(permission!= 0){</p><p>window.webkitNotifications.requestPermission();</p><p>var requestTime = new Date();</p><p>var waitTime = 5000;</p><p>var checkPerMiniSec = 100;</p><p>setTimeout(function(){</p><p>权限= window.webkitNotifications.checkPermission();</p><p>if(permission == 0){</p><p>createNotification(tab);</p><p>}否则if(new Date()-requestTime <waitTime){</p><p>setTimeout(arguments.callee,checkPerMiniSec );</p><p>}</p><p>},checkPerMiniSec);</p><p>}否则if(permission == 0){</p><p>createNotification(tab);</p><p>}</p><p>}</p><p>函数createNotification(tab){</p><p>var showSec = 10000;</p><p>var icon =“ http://tech.baidu.com/resource/img/logo_news_137_46.png”;</p><p>var title =“ [” + new Date()。toLocaleTimeString()+“]在” +(showSec / 1000)+“秒”之后关闭;</p><p>var body =“你好,世界,</p><p>var popup = window.webkitNotifications.createNotification(icon,title,body);</p><p>popup.tag =选项卡;</p><p>popup.ondisplay = function(event){</p><p>setTimeout(function(){</p><p>event.currentTarget.cancel();</p><p>},showSec);</p><p>}</p><p>popup.show();</p><p>}</p><p></ script></p><p></ body></p><p></ html></p><p>以上就是“HTML5的Notifycations怎么应用”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注创新互联行业资讯频道。</p> <br> 当前题目:HTML5的Notifycations怎么应用 <br> 本文链接:<a href="http://cxhlcq.com/article/gdcdsp.html">http://cxhlcq.com/article/gdcdsp.html</a> </div> </div> </div> <div class="other container"> <h3>其他资讯</h3> <ul> <li> <a href="/article/ddiopgc.html">vb点虐 0f的简单介绍</a> </li><li> <a href="/article/ddioppe.html">mysql表怎么弄外键 mysql建表设置外键</a> </li><li> <a href="/article/ddiopgj.html">购买的腾讯云服务器在哪找 腾讯云买的服务器可以退款吗</a> </li><li> <a href="/article/ddiopid.html">wordpress变装 wordpress怎样更换主题背景</a> </li><li> <a href="/article/ddiopgo.html">php打印随机数据 php输出随机数</a> </li> </ul> </div> <div class="footer"> <div class="foota container"> <div class="foot_nav fl col-lg-8 col-md-8 col-sm-12 col-xs-12"> <ul> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>网站制作</h3> <a href="https://www.cdcxhl.com/mobile.html" target="_blank">手机网站制作</a><a href="http://chengdu.xwcx.net/mobile/" target="_blank">移动手机网站制作</a><a href="http://www.kswcd.com/mobile/" target="_blank">手机网站制作</a><a href="http://www.cxjianzhan.com/mobile/" target="_blank">手机网站制作</a><a href="http://www.cdxwcx.cn/bj/" target="_blank">网站制作报价</a><a href="http://www.cdkjz.cn/" target="_blank">成都网站制作</a> </li> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>企业服务</h3> <a href="https://www.cdcxhl.com/hangyead/" target="_blank">一元广告</a><a href="https://www.cdcxhl.com/ruanwen/" target="_blank">软文营销</a><a href="https://www.cdcxhl.com/service/trademark.html" target="_blank">商标注册</a><a href="https://www.cdcxhl.com/ruanwen/yingxiao/" target="_blank">软文发稿</a><a href="https://www.cdcxhl.com/mianfei/jianzhan/" target="_blank">成都免费建站</a><a href="https://www.cdcxhl.com/link/" target="_blank">链接买卖</a> </li> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>网站建设</h3> <a href="https://www.cdcxhl.com/yingxiao.html" target="_blank">成都营销网站建设</a><a href="http://www.scyingshan.cn/" target="_blank">营山网站建设</a><a href="http://www.scyanting.cn/" target="_blank">盐亭网站建设</a><a href="http://www.cdkjz.cn/fangan/store/" target="_blank">成都电商网站建设方案</a><a href="http://www.cqcxhl.com/" target="_blank">重庆企业网站建设</a><a href="http://www.cdweb.net/" target="_blank">成都网站建设</a> </li> <li class="col-lg-3 col-md-3 col-sm-3 col-xs-6"> <h3>服务器托管</h3> <a href="https://www.cdcxhl.com/idc/cqstsanx.html" target="_blank">重庆水土三线托管</a><a href="http://www.cdfuwuqi.com/tuoguan/duoxian/" target="_blank">多线服务器托管</a><a href="https://www.cdcxhl.com/idc/leshan.html" target="_blank">乐山服务器托管</a><a href="http://www.cdxwcx.cn/tuoguan/mianyang.html" target="_blank">绵阳机房托管</a><a href="https://www.cdxwcx.com/jifang/yaan.html" target="_blank">雅安服务器托管</a><a href="https://www.cdcxhl.com/idc/cqstsx.html" target="_blank">重庆水土双线托管</a> </li> </ul> </div> <div class="footar fl col-lg-4 col-md-4 col-sm-12 col-xs-12"> <p>全国免费咨询:</p> <b>400-028-6601</b> <p>业务咨询:028-86922220 / 13518219792</p> <p>节假值班:18980820575 / 13518219792</p> <p>联系地址:成都市太升南路288号锦天国际A幢1002号</p> </div> </div> <div class="footb"> <div class="copy container"> <div class="fl">Copyright © 成都创新互联科技有限公司重庆分公司 <a href="https://beian.miit.gov.cn/" target="_blank">渝ICP备2021005571号</a></div> <!--<div class="fr"><a href="https://www.cdxwcx.com/" target="_blank">成都网站建设</a>:<a href="https://www.cdcxhl.com/" target="_blank">创新互联</a></div>--> </div> </div> <div class="link"> <div class="container"> 友情链接:: <a href="https://www.cdcxhl.com/" target="_blank">成都网站建设</a> <a href="https://www.cdcxhl.com/city/chongqing.html" target="_blank">重庆网站建设</a> <a href="">四川网站建设</a> <a href="">重庆建设网站</a> <a href="https://www.cdxwcx.com/jifang/xiyun.html" target="_blank">移动服务器托管</a> <a href="http://www.cdfuwuqi.com/" target="_blank">成都服务器托管</a> <a href="https://www.cdcxhl.cn/" target="_blank">云服务器</a> <a href="http://www.cdhuace.com/" target="_blank">广告设计制作</a> <a href="https://www.cdcxhl.com/sheji/chongqing.html" target="_blank">重庆网页设计</a> <a href="https://www.cdcxhl.com/zuo/chongqing.html" target="_blank">重庆做网站</a> <a href="https://www.cdcxhl.com/zhizuo/chongqing.html" target="_blank">重庆网站制作</a> <a href="">重庆网站建设</a> <a href="">重庆网站公司</a> <a href="">渝中网站制作</a> <a href="">重庆网站设计</a> </div> </div> </div> <div class="foot"> <ul class="public-celan"> <li> <a href="https://p.qiao.baidu.com/cps3/chatIndex?siteToken=6ce441ff9e2d6bedbdfc2a4138de449e&speedLogId=162260383240185e3_1622603832401_02407&eid=6256368&reqParam=%7B%22from%22%3A1%2C%22sessionid%22%3A%22-100%22%2C%22siteId%22%3A%2211284691%22%2C%22tid%22%3A%22-1%22%2C%22userId%22%3A%226256368%22%2C%22ttype%22%3A1%2C%22pageId%22%3A0%7D" target="_blank" class="a1 db tc"> <img src="/Public/Home/img/icon-23.png" alt="" class="db auto"> <span class="span-txt">在线咨询</span> </a> </li> <li> <a href="tel:18980820575" class="a1 db tc"> <img src="/Public/Home/img/icon-24.png" alt="" class="db auto"> <span class="span-txt">电话咨询</span> </a> </li> <li> <a target="_blank" href="tencent://message/?uin=1683211881&Site=&Menu=yes" class="a1 db tc"> <img src="/Public/Home/img/icon-25.png" alt="" class="db auto"> <span class="span-txt">QQ咨询</span> </a> </li> <li> <a target="_blank" href="tencent://message/?uin=532337155&Site=&Menu=yes" class="a1 db tc public-yuyue-up"> <img src="/Public/Home/img/icon-26.png" alt="" class="db auto"> <span class="span-txt">预约顾问</span> </a> </li> </ul> </div> <div class="customer"> <dl class="icon1"> <dt> <a href="tencent://message/?uin=1683211881&Site=&Menu=yes"> <i class="iconT"><img src="/Public/Home/img/QQ.png" alt=""></i> <p>在线咨询</p> </a> </dt> </dl> <dl class="icon2"> <dt><i><img src="/Public/Home/img/weixin.png" alt=""></i><p>微信咨询</p></dt> <dd><img src="/Public/Home/img/ewm.png"></dd> </dl> <dl class="icon3"> <dt><i><img src="/Public/Home/img/dianhua.png" alt=""></i><p>电话咨询</p></dt> <dd> <p>028-86922220(工作日)</p> <p>18980820575(7×24)</p> </dd> </dl> <dl class="icon4"> <dt class="sShow"> <a href="tencent://message/?uin=244261566&Site=&Menu=yes"> <i><img src="/Public/Home/img/dengji.png" alt=""></i><p>提交需求</p> </a> </dt> </dl> <dl class="icon5"> <dt class="gotop"> <a href="#top"> <i><img src="/Public/Home/img/top.png" alt=""></i><p>返回顶部</p> </a> </dt> </dl> </div> </body> </html> <script> $(".con img").each(function(){ var src = $(this).attr("src"); //获取图片地址 var str=new RegExp("http"); var result=str.test(src); if(result==false){ var url = "https://www.cdcxhl.com"+src; //绝对路径 $(this).attr("src",url); } }); window.onload=function(){ document.oncontextmenu=function(){ return false; } } </script>