-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
59 lines (43 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
var css = document.querySelector("h3");
var body = document.querySelector("body");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
function colorChange() {
body.style.background = "radial-gradient(circle, "
+ color1.value
+ ", "
+ color2.value
+ ")";
css.textContent = body.style.background + ";";
}
function intialGradient(){
// css.textContent = body.style.background;
// css.textContent = ;
// css.textContent = css.style.getPropertyValue("background");
// console.log(body.);
var propertyValue = getComputedStyle(body).background;
// console.log(propertyValue.substring());
css.textContent = propertyValue;
// color1.value =propertyValue ;
// color2.value = propertyValue;
}
function setColor1() {
console.log(color1.value);
// color1.value = body.style.background;
}
function setColor2() {
// color2.value = body.style.background;
console.log(color2.value);
}
color1.addEventListener("input",colorChange);
color2.addEventListener("input",colorChange);
// function forColor2() {
// body.style.background = "linear-gradient(to right, "
// + color1.value
// + ", "
// + color2.value
// + ")";
// }
// console.log(css);
// console.log(color1);
// console.log(color2);