good evening all. I’am a beginner programmer, I need your help in changing the image based on the time of day. for example:
- 00-11am = image A
- 12pm-18pm = image B
- 19pm-23pm = image C
Can anyone help me? I know that I need to use JS but I don’t know how to implement it properly. Thanks
Advertisement
Answer
Something like this would work:
JavaScript
x
11
11
1
let currentTime = new Date().getHours();
2
let img = document.getElementById('myImage')
3
4
if (currentTime >= 0 && currentTime <= 11) {
5
img.src = 'image 1 link'
6
} else if (currentTime >= 12 && currentTime <= 18) {
7
img.src = 'image 2 link'
8
} else if (currentTime >= 19 && currentTime <= 23) {
9
img.src = 'image 3 link'
10
}
11
change myImage to whatever your images ID is, and change the image sources to the links to your image files.