-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
68 lines (48 loc) · 1.73 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
60
61
62
63
64
65
66
67
68
var css = document.querySelector("h3");
var color1 = document.querySelector(".color1");
var color2 = document.querySelector(".color2");
var body = document.getElementById("gradient");
var button = document.querySelector("button");
var img = document.querySelector("img")
function setGradient() {
body.style.background =
"linear-gradient(to right, "
+ color1.value
+ ", "
+ color2.value
+ ")";
css.textContent = body.style.background + ";";
}
function generateNumber() {
color1.value = '#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6);
color2.value = '#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6);
setGradient();
}
// function changeImage() {
// img.setAttribute("src", "test2.jpg");
// }
// function changeImage() {
// img.src = "test2.jpg";
// }
function changeImage() {
if(img.src === "file:///Users/yinhow/Documents/Programming/Javascript/backgroundGeneratorExercise/test.jpg") {
img.setAttribute("src", "test2.jpg");
}
else {
img.setAttribute("src", "test.jpg");
}
}
color1.addEventListener("input", setGradient);
color2.addEventListener("input", setGradient);
window.addEventListener('load',setGradient);
button.addEventListener("click", generateNumber);
img.addEventListener("click", changeImage);
/* NOTE: it's important to have changeImage declared and put as
reculsive function. ELSE the image will change even without event!!
ADD a if condition to switch photo on every click
*/
/*1. Write code so that the colour inputs match the background generated on the first page load.
// color1.value = red;
// color2.value = yellow;
2. Display the initial CSS linear gradient property on page load.
3. BONUS: Add a random button which generates two random numbers for the colour inputs.*/