-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
28 lines (23 loc) · 790 Bytes
/
script.js
File metadata and controls
28 lines (23 loc) · 790 Bytes
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
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.getElementById("gradient");
function setGradient() {
body.style.background =
"linear-gradient(to right, "
+ color1.value
+ ", "
+ color2.value
+ ")";
}
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);
function setHex() {
var color1 = document.getElementsByName('color1')[0].value;
var color2 = document.getElementsByName('color2')[0].value;
document.getElementById('hex1').innerHTML = color1;
document.getElementById('hex2').innerHTML = color2;
}
setHex();
color1.addEventListener("change", function(){setHex();});
color2.addEventListener("change", function(){setHex();});