This commit is contained in:
Михаил Капелько
2023-05-04 19:52:06 +03:00
parent 5e7bdc5f52
commit 827f3e2718
2 changed files with 43 additions and 0 deletions

43
web/memory.html Normal file
View File

@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>Память | Memory</title>
</head>
<body>
</body>
<script>
/*
document.onclick = function() {
document.body.innerHTML += "!";
};
*/
var items = []
// Section16Buttons.
for (var i = 0; i < 16; i++) {
let item = document.createElement("div")
document.body.appendChild(item)
items.push(item)
item.id = `${i}`
}
// SectionGrid.
let side = Number(50)
let space = Number(20)
let gap = Number(side + space)
for (var id in items) {
var item = items[id]
let row = Math.floor(id / 4)
let x = gap + (id - row * 4) * gap
let y = gap + row * gap
item.style.left = `${x}px`
item.style.top = `${y}px`
item.style.width = `${side}px`
item.style.height = `${side}px`
item.style.position = "absolute"
item.style.background = "blue"
}
</script>
</html>