From 7e41581a34fe4a479dbd32fc44dcbb16f5540493 Mon Sep 17 00:00:00 2001 From: Alexis Hovorka Date: Sat, 19 Feb 2022 22:56:15 -0700 Subject: [feat] Finish basic styles --- public/main.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'public/main.js') diff --git a/public/main.js b/public/main.js index dce51b8..3f7031b 100644 --- a/public/main.js +++ b/public/main.js @@ -4,6 +4,28 @@ const $ = (s,c) => (c||document).querySelector(s); function $$(x,y,z,a){a=(z||document).querySelectorAll(x);if(typeof y=="function")[].forEach.call(a,y);return a} function m(a,b,c){c=document;b=c.createElement(b||"p");b.innerHTML=a.trim();for(a=c.createDocumentFragment();c=b.firstChild;)a.appendChild(c);return a.firstChild} +const boardEl = document.createElement("table"); +$("#board").appendChild(boardEl); + +for (let i=0;i<6;i++) { + let o = ""; + for (let j=0;j<6;j++) { + o += ` ` + } + o = m(o, "table"); + boardEl.appendChild(o); +} + +function processKey(key) { + if (!/^([a-z]|enter|bspc)$/.test(key)) return; + console.log(key); +} + +document.addEventListener("keydown", e => + e.ctrlKey || e.altKey || e.metaKey || + processKey(e.key.toLowerCase() + .replace("backspace", "bspc"))); + //if ("serviceWorker" in navigator) { // navigator.serviceWorker.register("sw.js") // .then(() => console.log("Service worker registered")); -- cgit v1.2.3-70-g09d2