在使用網頁版Gmail的時候,每當收到新郵件,螢幕的右下方都會彈出相應的提示框。藉助HTML5提供的Notification API,我們也可以輕鬆實現這樣的功能。
確保瀏覽器支援
如果你在特定版本的瀏覽器上進行開發,那麼我建議你先到 caniuse 檢視瀏覽器對Notification API的支援情況,避免你將寶貴時間浪費在了一個無法使用的API上。
如何開始
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:使用者允許彈出通知欄。(“使用者:歡迎!我很高興能夠使用這個通知功能”)
Notification.requestPermission(function(permission){
//display notification here making use of constructor
});
用HTML建立一個按鈕
不要忘記了CSS
#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程式碼如下:
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函式設定一個時間間隔,使通知欄能定時關閉。
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。
原文出處:www.sevensignature.com
譯文出處:伯樂線上 – ElvisKang
連結:http://web.jobbole.com/82319/