-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavascrip.js
47 lines (39 loc) · 1.54 KB
/
javascrip.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
function info() {
var msg = document.getElementById('div_one')
var img = document.getElementById('img')
var data = new Date()
var hora = data.getHours()
var largura = window.screen.width;
msg.innerHTML = `Agora é ${hora} horas.`
if(hora > 0 && hora <= 12) {
if(largura < 420){
img.src = 'imagens/manha_img-p.png'
msg.innerHTML += " Bom-Dia"
document.body.style.backgroundColor = '#fdba38'
} else if (largura > 420){
img.src = 'imagens/manha_img.png'
msg.innerHTML += " Bom-Dia"
document.body.style.backgroundColor = '#fdba38'
} else(alert('ERROR!'))
} else if(hora > 12 && hora <= 18) {
if(largura < 420){
img.src = "imagens/tarde_img-p.png"
msg.innerHTML += ' Boa-Tarde'
document.body.style.backgroundColor = '#e1b77b'
} else if (largura > 420){
img.src = "imagens/tarde_img.png"
msg.innerHTML += ' Boa-Tarde'
document.body.style.backgroundColor = '#e1b77b'
} else {alert('ERROR!')}
} else {
if(largura < 420){
img.src = "imagens/noite_img-p.png"
msg.innerHTML += ' Boa-Noite'
document.body.style.backgroundColor = '#866ba2'
} else if(largura > 420){
img.src = "imagens/noite_img.png"
msg.innerHTML += ' Boa-Noite'
document.body.style.backgroundColor = '#866ba2'
} else(alert('ERROR!'))
}
}