-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
49 lines (37 loc) · 1.23 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
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.getElementById("gradient");
var randomButton = document.getElementById("random-btn");
var switchButton = document.getElementById("switch-btn");
//sets color values to background using color picker
function setGradient() {
//changes gradient background color
body.style.background =
"linear-gradient(to right, " + color1.value + ", " + color2.value + ")";
// displays linear gradient value
css.textContent = body.style.background;
}
//generates random color values
function genRandomColor() {
var randomColor = "#" + Math.floor(Math.random()*16777215).toString(16);
return randomColor;
}
//sets random rgb values to background
function setRandom() {
color1.value = genRandomColor();
color2.value = genRandomColor();
setGradient();
}
//switches color sides
function switchColors() {
var a = color1.value;
var b = color2.value;
color1.value = b;
color2.value = a;
setGradient();
}
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);
randomButton.addEventListener("click", setRandom);
switchButton.addEventListener("click", switchColors);