您的位置:首页 > Web前端 > HTML5

桌面通知_html5_Notify

2018-01-29 16:27 495 查看
开启浏览器桌面通知

如下图所示



代码

<body>
<h1>demo</h1>
<button>点击</button>
</body>
<script type="text/javascript">
/* ------------------------------------------
Shows the notification (if possible)
message = {
icon:
title:
message:
onshow:
onclick:
onerror:
onclose:
}
------------------------------------------ */
$(function(){
$("button").click(function(){
Notify.show({
icon:"images/icon.png",
title:'hello world!',
message:"Talk is cheap. Show me the code!"
});
});
})
</script>


预览地址

有积分的下载这里吧

demo下载

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: