-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
369 lines (319 loc) · 9.98 KB
/
index.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Calculadora Elétrica Online. calcule potência, corrente, tensão e resistência elétrica online">
<meta property="og:title" content="Calculadora Elétrica Online">
<meta name="og:description" content="Calculadora Elétrica Online. calcule potência, corrente, tensão e resistência elétrica online">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mateuscardoso99.github.io/calceletricajs">
<meta property="og:locale" content="pt-br">
<meta name="robots" content="all">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Calculadora Elétrica Online</title>
<style>
.container{
width: 60%;
background-color: #c7c7c7;
margin-bottom: 2rem;
margin-top: 2rem;
}
.conteudo{
padding: 2rem;
}
.labels{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
line-height: 2rem;
margin-bottom: 2rem;
color: #fff;
}
.button{
background: #224289;
color: #fff;
border: none;
border-radius: 9px;
width: 100%;
}
.button:hover{
color: #fff;
}
#resultado{
display: flex;
align-items: center;
justify-content: center;
color: #fff;
}
@media (min-width: 400px){
.labels{
flex-direction: row;
align-items: center;
}
}
</style>
</head>
<body onload="setOpcao()">
<div class="container">
<div class="conteudo">
<div class="form-group mb-4">
<select class="form-control mb-5" id="combobox" onchange="verificaSelecionado(this)">
<option value="Selecione uma opção">Selecione
</option>
<option>Corrente</option>
<option>Potência</option>
<option>Resistência</option>
<option>Tensão</option>
</select>
</div>
<div class="form-group text-center">
<input type="number" class="form-control" id="num1" placeholder="Valor 1" min="0" step="0.01">
<div class="labels">
<div class="form-check form-check-inline mt-1">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="radio1" value="">
<label id="label1" class="form-check-label text-dark" for="radio1"></label>
</div>
<div class="form-check form-check-inline mt-1">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="radio2" value="">
<label id="label2" class="form-check-label text-dark" for="radio2"></label>
</div>
<div class="form-check form-check-inline mt-1">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="radio3" value="">
<label id="label3" class="form-check-label text-dark" for="radio3"></label>
</div>
</div>
</div>
<div class="form-group text-center">
<input type="number" class="form-control" id="num2" placeholder="Valor 2" min="0" step="0.01">
<div class="labels">
<div class="form-check form-check-inline mt-1">
<input class="form-check-input" type="radio" name="inlineRadioOptions2" id="radio4" value="">
<label id="label4" class="form-check-label text-dark" for="radio4"></label>
</div>
<div class="form-check form-check-inline mt-1">
<input class="form-check-input" type="radio" name="inlineRadioOptions2" id="radio5" value="">
<label id="label5" class="form-check-label text-dark" for="radio5"></label>
</div>
<div class="form-check form-check-inline mt-1">
<input class="form-check-input" type="radio" name="inlineRadioOptions2" id="radio6" value="">
<label id="label6" class="form-check-label text-dark" for="radio6"></label>
</div>
</div>
</div>
<button type="button" class="button btn mb-2 mt-2" onclick="calcular()">
Calcular
</button>
</div>
<div id="resultado" class="text-center"/>
</div>
</body>
</html>
<script>
const setOpcao = () => {
document.getElementById('num1').value = ''
document.getElementById('num2').value = ''
const select = document.getElementById('combobox')
const opcoes = select.options
for (let opt, i = 0; opt = opcoes[i]; i++) {
if (opt.value === 'Selecione uma opção') {
opcoes.selectedIndex = i
break
}
}
}
const verificaSelecionado = (valor) => {
const selecionado = valor.options[valor.selectedIndex].text
const label1 = document.getElementById('label1')
const label2 = document.getElementById('label2')
const label3 = document.getElementById('label3')
const label4 = document.getElementById('label4')
const label5 = document.getElementById('label5')
const label6 = document.getElementById('label6')
if(selecionado === 'Corrente'){
label1.textContent = 'Potência'
label2.textContent = 'Resistência'
label3.textContent = 'Tensão'
label4.textContent = 'Potência'
label5.textContent = 'Resistência'
label6.textContent = 'Tensão'
}
else if(selecionado === 'Potência'){
label1.textContent = 'Corrente'
label2.textContent = 'Resistência'
label3.textContent = 'Tensão'
label4.textContent = 'Corrente'
label5.textContent = 'Resistência'
label6.textContent = 'Tensão'
}
else if(selecionado === 'Resistência'){
label1.textContent = 'Potência'
label2.textContent = 'Corrente'
label3.textContent = 'Tensão'
label4.textContent = 'Potência'
label5.textContent = 'Corrente'
label6.textContent = 'Tensão'
}
else if(selecionado === 'Tensão'){
label1.textContent = 'Potência'
label2.textContent = 'Resistência'
label3.textContent = 'Corrente'
label4.textContent = 'Potência'
label5.textContent = 'Resistência'
label6.textContent = 'Corrente'
}
}
const calcular = () => {
const select = document.getElementById('combobox')
const selecionado = select.options[select.selectedIndex].text
const resultado = document.getElementById('resultado')
const numero1 = document.getElementById('num1').value
const numero2 = document.getElementById('num2').value
let total = ''
if(selecionado === 'Corrente'){
if (radio1.checked) {
if(radio4.checked){//potencia selecionada
alert('Opção inválida!')
}
else if(radio5.checked){
total = (Math.sqrt(numero1/numero2)).toFixed(4) + ' A'
}
else if(radio6.checked){
total = (numero1/numero2).toFixed(4) + ' A'
}
}
else if (radio2.checked) {//resistencia selecionada
if(radio4.checked){
total = (Math.sqrt(numero2/numero1)).toFixed(4) + ' A'
}
else if(radio5.checked){
alert('Opção inválida!')
}
else if(radio6.checked){
total = (numero2/numero1).toFixed(4) + ' A'
}
}
else if (radio3.checked) {//tensao selecionada
if(radio4.checked){
total = (numero2/numero1).toFixed(4) + ' A'
}
else if(radio5.checked){
total = (numero1/numero2).toFixed(4) + ' A'
}
else if(radio6.checked){
alert('Opção inválida!')
}
}
}
else if(selecionado === 'Potência'){
if (radio1.checked) {
if(radio4.checked){
alert('Opção inválida!')
}
else if(radio5.checked){
total = (numero2*Math.pow(numero1,2)).toFixed(4) + ' W'
}
else if(radio6.checked){
total = (numero1*numero2).toFixed(4) + ' W'
}
}
else if (radio2.checked) {
if(radio4.checked){
total = (numero1*Math.pow(numero2,2)).toFixed(4) + ' W'
}
else if(radio5.checked){
alert('Opção inválida!')
}
else if(radio6.checked){
total = (Math.pow(numero2,2)/numero1).toFixed(4) + ' W'
}
}
else if (radio3.checked) {
if(radio4.checked){
total = (numero1*numero2).toFixed(4) + ' W'
}
else if(radio5.checked){
total = (Math.pow(numero1,2)/numero2).toFixed(4) + ' W'
}
else if(radio6.checked){
alert('Opção inválida!')
}
}
}
else if(selecionado === 'Resistência'){
if (radio1.checked) {
if(radio4.checked){
alert('Opção inválida!')
}
else if(radio5.checked){
total = (numero1/Math.pow(numero2,2)).toFixed(4) + ' Ω'
}
else if(radio6.checked){
total = (Math.pow(numero2,2)/numero1).toFixed(4) + ' Ω'
}
}
else if (radio2.checked) {
if(radio4.checked){
total = (numero2/Math.pow(numero1,2)).toFixed(4) + ' Ω'
}
else if(radio5.checked){
alert('Opção inválida!')
}
else if(radio6.checked){
total = (numero2/numero1).toFixed(4) + ' Ω'
}
}
else if (radio3.checked) {
if(radio4.checked){
total = (Math.pow(numero1,2)/numero2).toFixed(4) + ' Ω'
}
else if(radio5.checked){
total = (numero1/numero2).toFixed(4) + ' Ω'
}
else if(radio6.checked){
alert('Opção inválida!')
}
}
}
else if(selecionado === 'Tensão'){
if (radio1.checked) {
if(radio4.checked){
alert('Opção inválida!')
}
else if(radio5.checked){
total = (Math.sqrt(numero1*numero2)).toFixed(4) + ' V'
}
else if(radio6.checked){
total = (numero1/numero2).toFixed(4) + ' V'
}
}
else if (radio2.checked) {
if(radio4.checked){
total = (Math.sqrt(numero2*numero1)).toFixed(4) + ' V'
}
else if(radio5.checked){
alert('Opção inválida!')
}
else if(radio6.checked){
total = (numero1*numero2).toFixed(4) + ' V'
}
}
else if (radio3.checked) {
if(radio4.checked){
total = (numero2/numero1).toFixed(4) + ' V'
}
else if(radio5.checked){
total = (numero2*numero1).toFixed(4) + ' V'
}
else if(radio6.checked){
alert('Opção inválida!')
}
}
}
else{
alert('Selecione uma opção!')
}
resultado.innerHTML = `<h1 style='color:#224289'>${total}</h1>`
}
</script>