2024-05-07 23:09:19 +00:00
|
|
|
var div = document.createElement("div");
|
2024-05-07 21:58:13 +00:00
|
|
|
|
2024-05-07 23:09:19 +00:00
|
|
|
div.textContent = "Произошла ошибка, для оперативного устранения отпишите пожалуйста в тп.";
|
2024-05-07 21:58:13 +00:00
|
|
|
|
2024-05-07 23:09:19 +00:00
|
|
|
div.style.position = "fixed";
|
|
|
|
div.style.top = "0";
|
|
|
|
div.style.left = "0";
|
|
|
|
div.style.width = "100%";
|
|
|
|
div.style.height = "100%";
|
|
|
|
div.style.backgroundColor = "rgba(0,0,0,0.7)";
|
|
|
|
div.style.color = "white";
|
|
|
|
div.style.display = "flex";
|
|
|
|
div.style.justifyContent = "center";
|
|
|
|
div.style.alignItems = "center";
|
|
|
|
div.style.fontSize = "20px";
|
|
|
|
div.style.padding = "50px";
|
|
|
|
div.style.boxSizing = "border-box";
|
|
|
|
div.style.zIndex = "10000";
|
2024-05-07 21:58:13 +00:00
|
|
|
|
|
|
|
document.body.appendChild(div);
|