An open API service indexing awesome lists of open source software.

https://github.com/aladser/hide_block

Медленно скрыть DOM блок
https://github.com/aladser/hide_block

Last synced: 10 months ago
JSON representation

Медленно скрыть DOM блок

Awesome Lists containing this project

README

          

```
// системное сообщение об ошибке
let systemMessageContainer = document.querySelector('#system-message-container');

// скрыть системные сообщения в течение 3 секунд
if (systemMessageContainer) {
hideSlowlyDOMBlock(systemMessageContainer, 3);
}
```