A simple web representation of the Squid Game Grid.
Designed to be responsive.
Just a POC, the code is not very nelegant and disregarded broswer compatibility.
See main.js to set the DEFAULT_NUM_OF_PLAYERS
.
You may also upload a config.json
file in the following format:
{
"players": [
{
"number": 1,
"picUrl": "456.webp"
},
]
}
Only 1 to 100 are tested.
[...document.querySelectorAll(".square:not(.gone, .empty)")].slice(0,-1).forEach((e)=>e.click());
- Save the state of the game to a cookie.
- Add squid game geometric shaped buttons (reset the game, toggle fullscreen, etc).