-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (46 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<title>Balanço de Massa - CETEM</title>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Tabela de Balanço de Massa</h1>
<a href="https://github.com/r3minare/bmcetem">Código-fonte</a>
</header>
<form id="formulario">
<div class="cell">
<h3>Equipamento</h3>
<div onchange="update_all();" id="equip">
</div>
</div>
<div class="grid-container-3">
<div class="grid-item" id="quant">
<h4>Quantidade</h4>
Quantidade: <input type="text" id="quant-input" value="1" onchange="update_all();" style="width: 40px;">
</div>
<div class="grid-item" id="tempo">
<h4>Tempo médio de desmontagem</h4>
<span id="tempo-v" style="width: 40px;">0</span> Minutos
</div>
<div class="grid-item" id="base">
<h4>Base de preços</h4>
Base: <select id="base-input" onchange="load_base();" name="base">
<option value="Nenhuma">Nenhuma</option>
<option value="GEA">GEA</option>
<option value="CEMPRE">CEMPRE</option>
</select>
</div>
</div>
<h1 style="margin-top: 1cm;">Valor</h1>
<div class="grid-container" id="valor">
</div>
<h1 style="margin-top: 1cm;">Massa</h1>
<div class="grid-container" id="massa">
</div>
</form>
<script src="script.js" type="text/javascript"></script>
</body>
</html>