-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
56 lines (31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.querySelector("#gradient");
var btn = document.querySelector("button");
color1.value = "#ff0000";
color2.value = "#0000ff";
function setGradient(){
body.style.background = `linear-gradient(to right, ${color1.value}, ${color2.value})`;
css.textContent = body.style.background + ";";
}
function generateRandomColor(){
var hexColor = "#";
for(var i=0; i<6; i++){
hexColor += Math.floor(Math.random() * 16).toString(16);
}
return hexColor;
}
function getRandomColors(){
color1.value=generateRandomColor();
color2.value=generateRandomColor();
body.style.background = `linear-gradient(to right, ${color1.value}, ${color2.value})`;
css.textContent = body.style.background + ";"
}
setGradient();
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);
btn.addEventListener("click", getRandomColors);
slider.oninput = function() {
output.textContent = this.value;
}