-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.js
81 lines (60 loc) · 1.84 KB
/
code.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
let COLOR = "Black"
function testFunction(number)
{
RESOLUTION = Number(number);
while(container.hasChildNodes())
{
container.removeChild(container.firstChild);
}
strng = "repeat( " + number + ",auto)";
container.style.gridTemplateRows = strng;
container.style.gridTemplateColumns = strng;
for(let i=0;i<(number*number);i++)
{
const cell = document.createElement('div');
cell.classList.add('cell');
container.appendChild(cell);
}
const cells = document.querySelectorAll('.cell');
for(let i = 0; i<cells.length;i++)
{
// cells[i].addEventListener('mouseover',makeSolid);
cells[i].addEventListener('mouseover', function (e) {
e.target.style.background = COLOR;
});
}
}
let RESOLUTION = 0;
const container = document.querySelector('.container');
container.style.gridTemplateRows = "repeat(6,6fr)"
container.style.gridTemplateColumns = "repeat(6,6fr)"
const input_box = document.getElementById("input_box");
input_box.addEventListener('change', function(e) {
testFunction(e.target.value);
});
for(let i=0;i<36;i++)
{
const cell = document.createElement('div');
cell.classList.add('cell');
container.appendChild(cell);
}
const btn_4 = document.querySelector('#b4');
btn_4.addEventListener('click', () => {
COLOR = "green";
});
const btn_6 = document.querySelector('#b6');
btn_6.addEventListener('click', () => {
COLOR = "blue";
});
const btn_8 = document.querySelector('#b8');
btn_8.addEventListener('click', () => {
COLOR = 'pink';
});
const cells = document.querySelectorAll('.cell');
for(let i = 0; i<cells.length;i++)
{
// cells[i].addEventListener('mouseover',makeSolid);
cells[i].addEventListener('mouseover', function (e) {
e.target.style.background = COLOR;
});
}