-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
15 lines (14 loc) · 980 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function switchOff() {
document.getElementById("bulbImage").src = "https://d1tgh8fmlzexmh.cloudfront.net/ccbp-dynamic-webapps/bulb-go-off-img.png";
document.getElementById("catImage").src = "https://d1tgh8fmlzexmh.cloudfront.net/ccbp-dynamic-webapps/cat-eyes-img.png";
document.getElementById("switchStatus").textContent = "Switched Off";
document.getElementById("onSwitch").style.backgroundColor = "#22c55e";
document.getElementById("offSwitch").style.backgroundColor = "#cbd2d9";
}
function switchOn() {
document.getElementById("bulbImage").src = "https://d1tgh8fmlzexmh.cloudfront.net/ccbp-dynamic-webapps/bulb-go-on-img.png";
document.getElementById("catImage").src = "https://d1tgh8fmlzexmh.cloudfront.net/ccbp-dynamic-webapps/cat-img.png";
document.getElementById("switchStatus").textContent = "Switched On";
document.getElementById("offSwitch").style.backgroundColor = "#e12d39";
document.getElementById("onSwitch").style.backgroundColor = "#cbd2d9";
}