-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
41 lines (35 loc) · 1.1 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
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.getElementById("body");
var btnRandom = document.getElementById("random")
console.log(btnRandom);
function updateBackground() {
body.style.background =
"linear-gradient(to right, "
+ color1.value
+ ", "
+ color2.value
+ ")";
css.textContent = body.style.background + ";";
}
function randomBackground(){
console.log("hi");
var temp1 = Math.floor(Math.random()*16777215).toString(16);
var temp2 = Math.floor(Math.random()*16777215).toString(16);
var t1L = temp1.toString().length;
var t2L = temp2.toString().length;
if ((t1L < 6) || (t2L < 6)) {
randomBackground();
return;
} else {
color1.value = "#" + temp1;
color2.value = "#" + temp2;
updateBackground();
return;
}
}
updateBackground();
btnRandom.addEventListener("click", randomBackground);
color1.addEventListener("input", updateBackground);
color2.addEventListener("input", updateBackground);