diff --git a/src/scripts/main.js b/src/scripts/main.js index 35d0d8f74..6dd775729 100644 --- a/src/scripts/main.js +++ b/src/scripts/main.js @@ -1,7 +1,28 @@ 'use strict'; const pushNotification = (posTop, posRight, title, description, type) => { - // write code here + const notification = document.createElement('div'); + + notification.classList.add('notification', type); + + const titleElement = document.createElement('h2'); + + titleElement.classList.add('title'); + titleElement.textContent = title; + notification.appendChild(titleElement); + + const descriptionElement = document.createElement('p'); + + descriptionElement.textContent = description; + notification.appendChild(descriptionElement); + + notification.style.top = posTop + 'px'; + notification.style.right = posRight + 'px'; + document.body.appendChild(notification); + + setTimeout(() => { + notification.style.display = 'none'; + }, 2000); }; pushNotification(