-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimulador.html
124 lines (109 loc) · 3.52 KB
/
simulador.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Simulador IDEB</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"
integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<style>
#loader {
background: rgba(0, 0, 0, .25);
display: block;
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
}
#loader .glyphicon-refresh {
animation: spin 4s linear infinite;
position: absolute;
color: white;
left: 50%;
top: 50%;
font-size: 32pt;
}
table thead th {
text-align: center
}
#simulador input {
border: 0px !important;
box-shadow: none !important;
}
.tt-menu{
z-index: 999;
background: lightgray;
padding: 7px;
}
.tt-menu .tt-suggestion{
padding: 3px;
}
.tt-menu .tt-suggestion:hover{
background: gray;
color: white;
}
@-moz-keyframes spin {
100% {
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="loader"><span class="glyphicon glyphicon-refresh"></span></div>
<div class="container">
<header>
<h1>
IDEB - SIMULADOR
</h1>
</header>
<div class="row">
<div class="col-md-12" id="simuladorWrapper">
<h2 class="text-center">Escolha um período escolar</h2>
<br/>
<br/>
<select class="form-control" id="simuladorAnosEscolares" required>
<option value="">-- Escolha --</option>
<option value="iniciais">1º ao 5º</option>
<option value="finais">6º ao 9º</option>
<option value="medio">Médio</option>
</select>
<div id="simulador"></div>
<div class="text-right">
<br/>
<button onclick="Simulador.calcular()" class="btn btn-default">Calcular</button>
</div>
</div>
</div>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="js/mask.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<script src="js/simulador.js"></script>
<script>
$(document).ready(function () {
var $loader = $('#loader');
var $simuladorWrapper = $('#simuladorWrapper');
$loader.hide();
})
</script>
</body>
</html>