-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
69 lines (54 loc) · 2.17 KB
/
script.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
function Verificar() {
let data = new Date()
let ano = data.getFullYear()
let fano = document.querySelector('input#txtano')
let res = document.querySelector('div#res')
if (fano.value.length == 0 || Number(fano.value) > ano) {
window.alert(`[ERRO 404] Verifique os Dados e Tente Novamente`)
}
else {
let fsex = document.getElementsByName('radsex')
let idade = ano - Number(fano.value)
let img = document.createElement('img')
img.setAttribute('id','foto')
if(fsex[0].checked) {
let Homen = 'Homem'
if (idade >= 0 && idade < 10) {
img.setAttribute('src','image/kidsman.png')
}
else if (idade < 16) {
img.setAttribute('src','image/adolecentem.png')
}
else if (idade < 25) {
img.setAttribute('src','image/jovemm.png')
}
else if (idade < 50) {
img.setAttribute('src','image/adultom.png')
}
else {
img.setAttribute('src','image/oldman.png')
}
res.innerHTML = `Detectamos <strong style='color:Navy;font-weight: bold';>${Homen}</strong> com <strong style='font-weight: bold;font-size: 18px';>${idade}</strong> Anos. <br> <br> <br>`
}
else {
let Mulher = 'Mulher'
if (idade > 0 && idade < 10) {
img.setAttribute('src','image/kidsfemale.png')
}
else if (idade < 16){
img.setAttribute('src','image/adolecentef.png')
}
else if (idade < 25) {
img.setAttribute('src','image/jovemf.png')
}
else if (idade < 50) {
img.setAttribute('src','image/adultof.png')
}
else {
img.setAttribute('src','image/oldwo.png')
}
res.innerHTML = `Detectamos <strong style='color:DarkMagenta;font-weight: bold';>${Mulher}</strong> com <strong style='font-weight: bold;font-size: 18px';>${idade}</strong> Anos. <br> <br> <br> `
}
res.appendChild(img)
}
}