Web Notifications (Ho, ho, ho)

Using Web Notifications API... Details at https://developer.mozilla.org/en-US/docs/Web/API/Notifications_API/Using_the_Notifications_API

by Sabin Buraga

JavaScript

// o notificare importantă
const notif = new Notification ("🎄 Web", {
  // mesajul propriu-zis afișat
  body: "Ho, ho, ho! Vine vacanța!",
  // identifică fereastra de notificări
  tag:  "mesaj",
  // pictograma ferestrei de notificare e un document SVG
  icon: "https://image.flaticon.com/icons/svg/2324/2324300.svg"
});

// închidem notificarea după 10 sec.
setTimeout (notif.close.bind(notif), 10000);