Z14IT-CW2/about/about_assets/about.js

9 lines
327 B
JavaScript
Raw Normal View History

2020-04-17 11:43:21 +00:00
function hideImg() {
2020-04-17 11:52:29 +00:00
var targetImg = document.getElementsByClassName("headImg")
2020-04-17 11:51:08 +00:00
if (targetImg.style.backgroundImage == "") {
targetImg.style.backgroundImage= "url('internet.png')"
}else if (targetImg.style.backgroundImage == "url('internet.png')") {
targetImg.style.backgroundImage= ""
}
2020-04-17 11:43:21 +00:00
}