-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
34 lines (28 loc) · 1002 Bytes
/
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 colorRandom = document.querySelector(".colorRandom");
var body = document.getElementById("gradient");
function setBgGradient(){
body.style.background = "linear-gradient(to right, "
+ color1.value
+ ", "
+ color2.value
+ ")";
css.textContent = body.style.background + ";";
}
function randomString(length) {
return Math.round((Math.pow(16, length + 1) - Math.random() * Math.pow(16, length))).toString(16).slice(1);
}
function setRandomBgGradient() {
color1.value = "#" + randomString(6);
color2.value = "#" + randomString(6);
while (color2.value === color1.value){
color2.value = "#" + randomString(6);
}
setBgGradient();
}
setBgGradient();
color1.addEventListener("input", setBgGradient);
color2.addEventListener("input", setBgGradient);
colorRandom.addEventListener("click", setRandomBgGradient);