Files
MOPMA/⨐.js

22 lines
598 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

создатьОкноСОтступами = (id) =>
{
var окно = document.createElement("div");
окно.id = id;
окно.style.display = "none";
окно.classList.add("окно-с-отступами");
document.body.appendChild(окно);
окно.плавно = new ПлавноОтобразитьСкрыть(окно);
return окно;
};
// // // //
добавитьCSS = содержимое =>
{
var вид = document.createElement("style");
document.head.appendChild(вид);
вид.innerHTML = содержимое;
return вид;
};