-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
36 lines (29 loc) · 1.19 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
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.getElementById("gradient");
var btn = document.querySelector("button");
function setGradient() {
body.style.background = "linear-gradient(to right, " + color1.value + ", " + color2.value + ")";
css.textContent = body.style.background + ";";
}
function getRandomColor() {
var letters = '0123456789ABCDEF';
var color = '#';
for (var i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
// Write code so that the colour inputs match the background generated on the first page load.
body.style.background = "linear-gradient(to right, " + color1.value + ", " + color2.value + ")";
// Display the initial CSS linear gradient property on page load.
css.textContent = body.style.background + ";";
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);
// BONUS: Add a random button which generates two random numbers for the colour inputs.
btn.addEventListener("click", function() {
color1.value = getRandomColor();
color2.value = getRandomColor();
setGradient();
})