TransWikia.com

Как запихнуть в div

Stack Overflow на русском Asked by xqzmy on January 10, 2021

код:https://codepen.io/xqzmy-afk/pen/ZEpBmJo

function showNotification({top = 0, right = 0, className, html}) {
      let notification = document.createElement('div');
      notification.className = "notification";
      if (className) {
        notification.classList.add(className);
      }
      notification.innerHTML = html;
      document.body.append(notification);
      setTimeout(() => notification.remove(), 1500);
    }
    let i = 1;
    setInterval(() => {
      showNotification({
        top: 10,
        right: 10,
        html: 'Секунд прошло:' +  i++ + 'секунд',
        className: "welcome"
      });
    }, 2000);
      showNotification({
  top: 10, // 10px от верхней границы окна (по умолчанию 0px)
  left: 10, // 10px от правого края окна (по умолчанию 0px)
  html: 'Секунд прошло:', // HTML-уведомление
  className: "welcome" // дополнительный класс для div (необязательно)
});

Не понимаю как запихнуть div(notification) в div(в js) чтоб с помощью гридов отцентрировать по центру

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP