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

html5 notification桌面提醒功能

2016-03-19 17:05 645 查看
html5 notification桌面提醒功能

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
5秒后会弹出一个窗口
<script type="text/javascript">
function notify(){
if(window.webkitNotifications.checkPermission()==0){
var pop=window.webkitNotifications.createNotification("../img/logo.png","友情提示:","开饭了!");
//pop.show();
setTimeout(function () { pop.show(); },5000);
}else{
window.webkitNotifications.requestPermission();
}
}
window.onload=notify();
</script>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: