Skip to content

Instantly share code, notes, and snippets.

@alicethewhale
Created December 11, 2018 16:01
Show Gist options
  • Save alicethewhale/a15b6bf7a1d44bf49c83258a1cfaf3cc to your computer and use it in GitHub Desktop.
Save alicethewhale/a15b6bf7a1d44bf49c83258a1cfaf3cc to your computer and use it in GitHub Desktop.
tiles.map(tile => {
tile.addEventListener("click", event => {
const tileArea = tile.style.getPropertyValue("--area");
const emptyTileArea = emptyTile.style.getPropertyValue("--area");
emptyTile.style.setProperty("--area", tileArea);
tile.style.setProperty("--area", emptyTileArea);
forceGridAnimation();
unlockTiles(tileArea);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment