-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
74 lines (40 loc) · 1.67 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
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.getElementById("gradient");
var button = document.getElementById("generate");
function inputColorsOnLoad(){
color1.setAttribute("value", "#ff0000");
color2.setAttribute("value", "#ffff00");
}
function firstColorGenerator(){
var hex = "#";
var r1 = Math.floor(Math.random() * 10);
var r2 = Math.floor(Math.random() * 10);
var g1 = Math.floor(Math.random() * 10);
var g2 = Math.floor(Math.random() * 10);
var b1 = Math.floor(Math.random() * 10);
var b2 = Math.floor(Math.random() * 10);
color1.setAttribute("value", hex + r1 + r2 + g1 + g2 + b1 +b2);
}
function secondColorGenerator(){
var hex = "#";
var r1 = Math.floor(Math.random() * 10);
var r2 = Math.floor(Math.random() * 10);
var g1 = Math.floor(Math.random() * 10);
var g2 = Math.floor(Math.random() * 10);
var b1 = Math.floor(Math.random() * 10);
var b2 = Math.floor(Math.random() * 10);
color2.setAttribute("value", hex + r1 + r2 + g1 + g2 + b1 +b2);
}
function setGradient(){
body.style.background = "linear-gradient(to right, " + color1.value + ", " + color2.value + ")";
css.textContent = body.style.background + ";";
}
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);
window.addEventListener("load", inputColorsOnLoad);
window.addEventListener("load", setGradient);
button.addEventListener("click", firstColorGenerator);
button.addEventListener("click", secondColorGenerator);
button.addEventListener("click", setGradient);