-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
36 lines (28 loc) · 841 Bytes
/
script.js
File metadata and controls
36 lines (28 loc) · 841 Bytes
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
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.querySelector("body");
var button = document.querySelector("#button");
function randomColor(){
return(
"#" +
Math.random()
.toString(16)
.slice(2, 8));
}
function setRandomColor(){
color1.value = randomColor();
color2.value = randomColor();
changeColor();
}
function printcode(){
css.textContent = body.style.background + ";";
}
function changeColor(){
body.style.background = "linear-gradient(to right, " + color1.value + ", " + color2.value +")";
printcode();
}
changeColor();
color1.addEventListener("input", changeColor);
color2.addEventListener("input", changeColor);
button.addEventListener("click",setRandomColor);