Михаил Капелько 1 year ago
parent
commit
827f3e2718
2 changed files with 43 additions and 0 deletions
  1. BIN
      iOS/app/MMMemory.xcodeproj/project.xcworkspace/xcuserdata/mk.xcuserdatad/UserInterfaceState.xcuserstate
  2. +43
    -0
      web/memory.html

BIN
iOS/app/MMMemory.xcodeproj/project.xcworkspace/xcuserdata/mk.xcuserdatad/UserInterfaceState.xcuserstate View File


+ 43
- 0
web/memory.html 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>

Loading…
Cancel
Save