這篇文章主要介紹了使用Html5的Notification API制作web通知的教程,示例包括需要使用到的相關CSS以及Javascript代碼,需要的朋友可以參考下
在使用網頁版Gmail的時候,每當收到新郵件,屏幕的右下方都會彈出相應的提示框。借助Html5提供的Notification API,我們也可以輕松實現這樣的功能。
確保浏覽器支持
如果你在特定版本的浏覽器上進行開發,那麼我建議你先到 caniuse 查看浏覽器對Notification API的支持情況,避免你將寶貴時間浪費在了一個無法使用的API上。
如何開始
JavaScript Code復制內容到剪貼板
- var notification=new Notification(‘Notification Title',{
- body:'Your Message'
- });
-
上面的代碼構造了一個簡陋的通知欄。構造函數的第一個參數設定了通知欄的標題,而第二個參數則是一個option 對象,該對象可設置以下屬性:
- body :設置通知欄的正文內容。
dir :定義通知欄文本的顯示方向,可設為auto(自動)、ltr(從左到右)、rtl(從右到左)。
lang :聲明通知欄內文本所使用的語種。(譯注:該屬性的值必須屬於BCP 47 language tag。)
tag:為通知欄分配一個ID值,便於檢索、替換或移除通知欄。
icon :設置作為通知欄icon的圖片的URL
獲取權限
在顯示通知欄之前需向用戶申請權限,只有用戶允許,通知欄才可出現在屏幕中。對權限申請的處理將有以下返回值:
- default:用戶處理結果未知,因此浏覽器將視為用戶拒絕彈出通知欄。(“浏覽器:你沒要求通知,我就不通知你了”)
denIEd:用戶拒絕彈出通知欄。(“用戶:從我的屏幕裡滾開”)
granted:用戶允許彈出通知欄。(“用戶:歡迎!我很高興能夠使用這個通知功能”)
JavaScript Code復制內容到剪貼板
- Notification.requestPermission(function(permission){
- //display notification here making use of constructor
- });
-
用Html創建一個按鈕
XML/Html Code復制內容到剪貼板
- <button id="button">Read your notification</button>
-
不要忘記了CSS
CSS Code復制內容到剪貼板
- #button{
- font-size:1.1rem;
- width:200px;
- height:60px;
- border:2px solid #df7813;
- border-radius:20px/50px;
- background:#fff;
- color:#df7813;
- }
- #button:hover{
- background:#df7813;
- color:#fff;
- transition:0.4s ease;
- }
-
全部的Javascript代碼如下:
JavaScript Code復制內容到剪貼板
- document.addEventListener('DOMContentLoaded',function(){
- document.getElementById('button').addEventListener('click',function(){
- if(! ('Notification' in window) ){
- alert('Sorry bro, your browser is not good enough to display notification');
- return;
- }
- Notification.requestPermission(function(permission){
- var config = {
- body:'Thanks for clicking that button. Hope you liked.',
- icon:'https://cdn2.iconfinder.com/data/icons/iOS-7-style-metro-ui-icons/512/MetroUI_Html5.png',
- dir:'auto'
- };
- var notification = new Notification("Here I am!",config);
- });
- });
- });
-
從這段代碼可以看出,如果浏覽器不支持Notification API,在點擊按鈕時將會出現警告“兄弟,很抱歉。你的浏覽器並不能很好地支持通知功能”(Sorry bro, your browser is not good enough to display notification)。否則,在獲得了用戶的允許之後,我們自制的通知欄便可以出現在屏幕當中啦。
為什麼要讓用戶手動關閉通知欄?
對於這個問題,我們可以借助setTimeout函數設置一個時間間隔,使通知欄能定時關閉。
JavaScript Code復制內容到剪貼板
- var config = {
- body:'Today too many guys got eyes on me, you did the same thing. Thanks',
- icon:'icon.png',
- dir:'auto'
- }
- var notification = new Notification("Here I am!",config);
- setTimeout(function(){
- notification.close(); //closes the notification
- },5000);
-
該說的東西就這些了。如果你意猶未盡,希望更加深入地了解Notification API,可以閱讀以下的頁面:
MDN
Paul lund’s tutorial on notification API
在CodePen上查看demo
你可以在CodePen上看到由Prakash (@imprakash)編寫的demo。