forked from Kalvium-Program/earth_boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
65 lines (51 loc) · 2.99 KB
/
app.js
File metadata and controls
65 lines (51 loc) · 2.99 KB
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
var body = document.body
var consumption = document.getElementById("consumption")
console.log(consumption);
var climate = document.getElementById("climate")
console.log(climate);
var resources = document.getElementById("resources")
console.log(resources);
var people = document.getElementById("people")
console.log(people);
var savetext = document.getElementById("save")
var frame = document.getElementById("frame")
consumption.onclick=()=>{
body.style.background="url(https://kq-storage.s3.ap-south-1.amazonaws.com/Github/earth/food-wastage-bg%5B1%5D.png)"
body.style.backgroundSize="100%"
savetext.innerHTML="Do your bit! Shop only what you need,eat only what you need and always save the leftovers"
frame.src="https://www.theworldcounts.com/embed/challenges/107?background_color=transparent&color=white&font_family=%22Helvetica+Neue%22%2C+Arial%2C+sans-serif&font_size=20"
consumption.style.background="green"
climate.style.backgroundColor="transparent"
people.style.backgroundColor="transparent"
resources.style.backgroundColor="transparent"
}
climate.onclick=()=>{
body.style.background ="url(https://kq-storage.s3.ap-south-1.amazonaws.com/Github/earth/climate-change-bg%5B1%5D.png)"
body.style.backgroundSize="100%"
savetext.innerHTML="Do your bit! Save trees, use renewable energy sources and prefer to travel green"
frame.src="https://www.theworldcounts.com/embed/challenges/23?background_color=transparent&color=white&font_family=%22Helvetica+Neue%22%2C+Arial%2C+sans-serif&font_size=20"
climate.style.backgroundColor="skyblue"
consumption.style.background="transparent"
people.style.backgroundColor="transparent"
resources.style.backgroundColor="transparent"
}
resources.onclick=()=>{
body.style.background ="url(https://kq-storage.s3.ap-south-1.amazonaws.com/Github/earth/natural-resources-bg%5B1%5D.png)"
body.style.backgroundSize="100%"
savetext.innerHTML=" Do your bit! Avoid all things plastic. Believe in Reduce, Reuse and Recycle"
frame.src= "https://www.theworldcounts.com/embed/challenges/5?background_color=transparent&color=white&font_family=%22Helvetica+Neue%22%2C+Arial%2C+sans-serif&font_size=20"
resources.style.backgroundColor="orange"
consumption.style.background="transparent"
climate.style.backgroundColor="transparent"
people.style.backgroundColor="transparent"
}
people.onclick=()=>{
body.style.background ="url(https://kq-storage.s3.ap-south-1.amazonaws.com/Github/earth/poverty-bg%5B1%5D.png)"
body.style.backgroundSize="100%"
savetext.innerHTML="Do your bit! Never waste food.Rather offer it to people or animals who are in need."
frame.src="https://www.theworldcounts.com/embed/challenges/2?background_color=transparent&color=white&font_family=%22Helvetica+Neue%22%2C+Arial%2C+sans-serif&font_size=20"
people.style.backgroundColor="red"
consumption.style.background="transparent"
climate.style.backgroundColor="transparent"
resources.style.backgroundColor="transparent"
}