-
Notifications
You must be signed in to change notification settings - Fork 0
/
imc.html
78 lines (65 loc) · 2.1 KB
/
imc.html
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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cálculo de IMC</title>
<style>
body{
font: normal 18pt arial;
}
#card{
width: 350px;
text-align: center;
margin: 50px;
box-shadow: grey 1px 1px 5px;
padding: 10px;
border-radius: 5%;
}
input{
font: normal 18pt arial;
width: 200px;
}
h1{
margin: 50px;
}
</style>
</head>
<body>
<h1>Calculando IMC</h1>
<div id="card">
<p>
<label>Qual sua altura? </label>
<input type="text" name="altura" id="altura" placeholder="Ex 1.60">
</p>
<p>
<label>Qual seu peso? </label>
<input type="text" name="peso" id="peso">
</p>
<p>
<input id="butRes" type="button" value="calcular">
<!--onclick="calcular()"-->
</p>
<p id="resultado">
Resultado
</p>
</div>
<script>
// Váriavel para pegar id do BOTÃO
let btn = window.document.querySelector("#butRes")
// Adicionando função Click ao id BOTÃO
btn.addEventListener('click', calcular)
function calcular() {
// As variáveis declaradas dentro da função, podem ser usadas somente dentro dela não tendo um valor global.
let peso = window.document.querySelector('#peso')
let altura = window.document.querySelector('#altura')
let resultado = window.document.querySelector('#resultado')
let alturaValor = Number(altura.value)
let pesoValor = Number(peso.value)
let imc = (pesoValor / (alturaValor * alturaValor)) * 10000
resultado.innerHTML = `Sua altura é de: ${alturaValor}(cm), Seu peso é de: ${pesoValor}(Kg), Portanto, seu IMC é: ${imc.toFixed(2)}`
}
</script>
</body>
</html>