From 43fa2e1f933820a15124c8d065fd4842c2f8e0bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB=20=D0=9A=D0=B0=D0=BF?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D0=BA=D0=BE?= Date: Fri, 25 Jun 2021 17:53:27 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BA=D0=BE=D1=80=D0=B5=D0=BD=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 00125.изображения.js | 2 +- 00130.объекты.js | 2 +- index.html | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/00125.изображения.js b/00125.изображения.js index dd7e6ef..38fa614 100644 --- a/00125.изображения.js +++ b/00125.изображения.js @@ -48,7 +48,7 @@ function обновитьИзображение(путь, имя, свойств эл.id = `изображения-${имя}`; эл.style.position = "absolute"; эл.style.display = "block"; - document.body.appendChild(эл); + document.getElementById("корень").appendChild(эл); мир.изображения.элементы[имя] = эл; // Свойства по умолчанию. эл.style.left = `${ум.x}px`; diff --git a/00130.объекты.js b/00130.объекты.js index d776a50..32cfc6a 100644 --- a/00130.объекты.js +++ b/00130.объекты.js @@ -105,7 +105,7 @@ function обновитьЭлемент(имя, свойство, значени элемент.style.position = "absolute"; элемент.style.display = "block"; элемент.style.transformOrigin = "center"; - document.body.appendChild(элемент); + document.getElementById("корень").appendChild(элемент); мир.объекты.элементы[имя] = элемент; // Свойства по умолчанию. элемент.style.width = `${ум.ширина}px`; diff --git a/index.html b/index.html index 01524a4..113e369 100644 --- a/index.html +++ b/index.html @@ -14,10 +14,14 @@ body { height: 100vh; width: 100vw; + } + #корень { + position: relative; } +