15 lines
540 B
JavaScript
15 lines
540 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
const grid = document.querySelector('.grid')
|
|
let squares = Array.from(document.querySelectorAll('.grid div'))
|
|
const ScoreDisplay = document.querySelector('#score')
|
|
const StartBtn = document.querySelector('#start-button')
|
|
const width = 10
|
|
|
|
//The Tetrominoes
|
|
const lTetromino = [
|
|
[1, width+1, width*2+1, 2],
|
|
[width, width+1, width+2, width*2+2],
|
|
[1, width+1, width*2+1, width*2],
|
|
[width, width*2, width*2+1, width*2+2]
|
|
]
|
|
}) |