-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (64 loc) · 3.05 KB
/
index.html
File metadata and controls
74 lines (64 loc) · 3.05 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="images/logo.png">
<title>Inicialização Problema de Transporte</title>
<link rel="stylesheet" type="text/css" href="dependencies/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/animate.min.css">
<link rel="stylesheet" type="text/css" href="css/all.min.css">
<script type="text/javascript" src="dependencies/jquery/jquery3.3.1.js" defer></script>
<script type="text/javascript" src="dependencies/bootstrap/js/bootstrap.min.js" defer></script>
<script type="text/javascript" src="js/General.js" defer></script>
<script type="text/javascript" src="js/Main.js" defer></script>
</head>
<body>
<div class="transport-problem">
<div class="title">
<div class="title-middle">
<h1 class="font-weight-bold title-text">Inicialização do Problema de Transporte</h1>
<h6 class="font-weight-bold">Criado Por: Luan Eduardo da Costa</h6>
</div>
</div>
<div class="content animated fadeIn">
<div class="text-primary fw-bold font-size-5 text-uppercase mt-2">Escolha o Modo de Inicialização</div>
<div class="options">
<button type="button" class="option start-option selected" cantonoroeste>Canto Noroeste</button>
<button type="button" class="option end-option" custominimo>Custo Mínimo</button>
</div>
<div>
<div class="option-title">
<h4 class="font-weight-bold mb-3">Inicialização com <span class="text-accent" modeText>Canto Noroeste</span>
</h4>
<h6>1º - Defina X e Y (quantos enviam e quantos recebem, respectivamente).</h6>
<h6>2º - Clique em continuar para criar a tabela de custos.</h6>
<h6>3º - Preencha a tabela de custos balanceando as quantidades máximas.</h6>
<h6>4º - Clique em continuar novamente para calcular.</h6>
</div>
<div class="text-primary fw-bold font-size-5 text-uppercase mt-2">Entrada de dados</div>
<hr class="my-2">
<div class="fields d-inline-block">
<input type="text" class="field" placeholder="Quantos Enviam (X)" xVal>
<input type="text" class="field" placeholder="Quantos Recebem (Y)" yVal>
</div>
<div class="actions d-inline-block">
<button type="button" class="secondary-action" reset>Reiniciar</button>
<button type="button" class="main-action" calculate>Continuar</button>
</div>
<div class="error" error></div>
<div tableContainer></div>
<div style="display: none" result>
<div class="text-primary fw-bold font-size-5 text-uppercase mt-2">Resultados Obtidos</div>
<hr class="my-2">
<div resultTable></div>
<div class="font-italic text-accent fw-bold font-size-6">
<span>Custo Final: </span>
<span finalCost></span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>