-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
35 lines (29 loc) · 837 Bytes
/
script.js
File metadata and controls
35 lines (29 loc) · 837 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
29
30
31
32
33
34
35
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
+ ")";
css.textContent = body.style.background + ";";
}
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);
function outPut(){
console.log("Hey");
}
/*var para = document.querySelectorAll("p");
for(i = 0; i < para.length; i++){
para[i].style.color = "red";
para.addEventListener("click", function(){
para[i].style.display = "hide";
});
}*/
var para = document.querySelectorAll("#para,#para2");
para.addEventListener("click", function(){
para.style.display = "none"
})