-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
82 lines (64 loc) · 1.95 KB
/
script.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
82
const canvas = document.querySelector('.canvas')
const defaultSize = 5
let gridActive = true
let selectedColor = '#000000';
let selectedBGColor = '#FFFFFF';
let rainbow = false
let randColor = ''
function drawCanvas(size) {
let gridElements = document.querySelectorAll(".gridElement")
gridElements.forEach(item => {
canvas.removeChild(item)
})
canvas.style.gridTemplateColumns = `repeat(${size}, 1fr)`
canvas.style.gridTemplateRows = `repeat(${size}, 1fr)`
for (i=0;i<size*size;i++){
let newDiv = document.createElement('div')
newDiv.style.backgroundColor = selectedBGColor
newDiv.classList.add("gridElement")
newDiv.classList.toggle('gridActive')
newDiv.addEventListener('mouseover', () => {
chooseRandomColor()
if (rainbow) {
newDiv.style.backgroundColor = '#' + randColor
} else {
newDiv.style.backgroundColor = selectedColor
}
})
canvas.appendChild(newDiv)
if (gridActive) {
newDiv.classList.add('gridActive')
} else {
newDiv.classList.remove('gridActive')
}
}
}
function reset() {
let gridElements = document.querySelectorAll(".gridElement")
gridElements.forEach(item => {
item.style.backgroundColor = selectedBGColor
})
}
function invert() {
let gridElements = document.querySelectorAll(".gridElement")
gridElements.forEach(item => {
item.style.toggle('active')
})
}
function toggleGrid() {
let gridElements = document.querySelectorAll(".gridElement")
gridActive = !gridActive
gridElements.forEach(item => {
item.classList.toggle('gridActive')
})
}
function selectColor(color) {
selectedColor = color
}
function toggleRainbow() {
rainbow = !rainbow
}
function chooseRandomColor() {
randColor = Math.floor(Math.random()*16777215).toString(16);
}
drawCanvas(defaultSize)