-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
50 lines (45 loc) · 897 Bytes
/
main.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
const body = document.querySelector('body')
const container = document.querySelector('.container')
const colorText = document.querySelector('.color-text')
const values = [
'0',
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'a',
'b',
'c',
'd',
'e',
'f',
]
// random color function
function getGradient() {
let color = '#'
for (let i = 0; i < 6; i++) {
const randomNumber = Math.trunc(Math.random() * values.length)
color += values[randomNumber]
}
return color
}
// set color to body
function setGradient() {
const color1 = getGradient()
const color2 = getGradient()
const randomDeg = Math.trunc(Math.random() * 360)
const bgColor = `linear-gradient(
${randomDeg}deg,
${color1},
${color2}
)`
body.style.background = bgColor
colorText.textContent = bgColor
}
setGradient()
container.addEventListener('click', setGradient)