МОРда МАджонга
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
598B

  1. создатьОкноСОтступами = (id) =>
  2. {
  3. var окно = document.createElement("div");
  4. окно.id = id;
  5. окно.style.display = "none";
  6. окно.classList.add("окно-с-отступами");
  7. document.body.appendChild(окно);
  8. окно.плавно = new ПлавноОтобразитьСкрыть(окно);
  9. return окно;
  10. };
  11. // // // //
  12. добавитьCSS = содержимое =>
  13. {
  14. var вид = document.createElement("style");
  15. document.head.appendChild(вид);
  16. вид.innerHTML = содержимое;
  17. return вид;
  18. };