DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5詳解 >> 使用HTML5的Notification API制作web通知的教程
使用HTML5的Notification API制作web通知的教程
編輯:HTML5詳解     
這篇文章主要介紹了使用Html5的Notification API制作web通知的教程,示例包括需要使用到的相關CSS以及Javascript代碼,需要的朋友可以參考下

在使用網頁版Gmail的時候,每當收到新郵件,屏幕的右下方都會彈出相應的提示框。借助Html5提供的Notification API,我們也可以輕松實現這樣的功能。
確保浏覽器支持

如果你在特定版本的浏覽器上進行開發,那麼我建議你先到 caniuse 查看浏覽器對Notification API的支持情況,避免你將寶貴時間浪費在了一個無法使用的API上。
如何開始
 

JavaScript Code復制內容到剪貼板
  1. var notification=new Notification(‘Notification Title',{  
  2.     body:'Your Message'   
  3. });   
  4.   

上面的代碼構造了一個簡陋的通知欄。構造函數的第一個參數設定了通知欄的標題,而第二個參數則是一個option 對象,該對象可設置以下屬性:

  •     body :設置通知欄的正文內容。
        dir :定義通知欄文本的顯示方向,可設為auto(自動)、ltr(從左到右)、rtl(從右到左)。
        lang :聲明通知欄內文本所使用的語種。(譯注:該屬性的值必須屬於BCP 47 language tag。)
        tag:為通知欄分配一個ID值,便於檢索、替換或移除通知欄。
        icon :設置作為通知欄icon的圖片的URL

獲取權限

在顯示通知欄之前需向用戶申請權限,只有用戶允許,通知欄才可出現在屏幕中。對權限申請的處理將有以下返回值:

  •     default:用戶處理結果未知,因此浏覽器將視為用戶拒絕彈出通知欄。(“浏覽器:你沒要求通知,我就不通知你了”)
        denIEd:用戶拒絕彈出通知欄。(“用戶:從我的屏幕裡滾開”)
        granted:用戶允許彈出通知欄。(“用戶:歡迎!我很高興能夠使用這個通知功能”)
       
       
JavaScript Code復制內容到剪貼板
  1. Notification.requestPermission(function(permission){   
  2.     //display notification here making use of constructor   
  3.     });   
  4.   

用Html創建一個按鈕
 

XML/Html Code復制內容到剪貼板
  1. <button id="button">Read your notification</button>  
  2.   

不要忘記了CSS
 

CSS Code復制內容到剪貼板
  1. #button{   
  2.   font-size:1.1rem;   
  3.   width:200px;   
  4.   height:60px;   
  5.   border:2px solid #df7813;   
  6.   border-radius:20px/50px;   
  7.   background:#fff;   
  8.   color:#df7813;   
  9. }   
  10. #button:hover{   
  11.   background:#df7813;   
  12.   color:#fff;   
  13.   transition:0.4s ease;   
  14. }   
  15.   

全部的Javascript代碼如下:
 

JavaScript Code復制內容到剪貼板
  1. document.addEventListener('DOMContentLoaded',function(){   
  2.         document.getElementById('button').addEventListener('click',function(){   
  3.             if(! ('Notification' in window) ){   
  4.                 alert('Sorry bro, your browser is not good enough to display notification');   
  5.                 return;   
  6.             }       
  7.             Notification.requestPermission(function(permission){   
  8.                 var config = {   
  9.                               body:'Thanks for clicking that button. Hope you liked.',   
  10.                               icon:'https://cdn2.iconfinder.com/data/icons/iOS-7-style-metro-ui-icons/512/MetroUI_Html5.png',   
  11.                               dir:'auto'  
  12.                               };   
  13.                 var notification = new Notification("Here I am!",config);   
  14.             });   
  15.         });   
  16.     });   
  17.   

從這段代碼可以看出,如果浏覽器不支持Notification API,在點擊按鈕時將會出現警告“兄弟,很抱歉。你的浏覽器並不能很好地支持通知功能”(Sorry bro, your browser is not good enough to display notification)。否則,在獲得了用戶的允許之後,我們自制的通知欄便可以出現在屏幕當中啦。

為什麼要讓用戶手動關閉通知欄?

對於這個問題,我們可以借助setTimeout函數設置一個時間間隔,使通知欄能定時關閉。
 

JavaScript Code復制內容到剪貼板
  1. var config = {   
  2.                body:'Today too many guys got eyes on me, you did the same thing. Thanks',   
  3.                icon:'icon.png',   
  4.                dir:'auto'  
  5.              }   
  6. var notification = new Notification("Here I am!",config);   
  7. setTimeout(function(){   
  8.     notification.close(); //closes the notification   
  9. },5000);   
  10.   

該說的東西就這些了。如果你意猶未盡,希望更加深入地了解Notification API,可以閱讀以下的頁面:

    MDN
    Paul lund’s tutorial on notification API

在CodePen上查看demo

你可以在CodePen上看到由Prakash (@imprakash)編寫的demo。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved