-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
34 lines (27 loc) · 1.08 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
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.getElementById("gradient");
var randomNumber = Math.floor(100000 + Math.random() * 900000);
var randomNumber2 = Math.floor(100000 + Math.random() * 900000);
var button = document.querySelector(".btn");
color1.value = "#" + randomNumber;
color2.value = "#" + randomNumber2;
function setGradient() {
body.style.background =
"linear-gradient(to right, " + color1.value + ", " + color2.value + ")";
css.textContent = body.style.background + ";";
}
//RNG that always generates 6 numbers
//Has limitations in colors but this is the best I can do for now
button.onclick = function() {
var randomNumber = Math.floor(100000 + Math.random() * 900000);
var randomNumber2 = Math.floor(100000 + Math.random() * 900000);
color1.value = "#" + randomNumber;
color2.value = "#" + randomNumber2;
setGradient();
}
//To start with a random color
setGradient();
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);