html5 notification桌面提醒功能

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>

 

posted @ 2016-03-19 17:05  gyz418  阅读(215)  评论(0)    收藏  举报