-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
174 lines (133 loc) · 6.15 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
<!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">
<!-- CSS do Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- CSS externo -->
<link rel="stylesheet" href="./style.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- icone -->
<link rel="icon" href="./img/relogio.png" type="image/png">
<title>Chronos Timer</title>
</head>
<body class="badge-dark">
<!-- Menu | INICIO -->
<nav class="navbar navbar-expand-lg navbar-light bg-primary">
<a class="navbar-brand font-weight-bold text-white" href="index.html">Chronos Timer</a>
<div class="ml-auto">
<a onclick="pausar()">
<i id="pause" class="fa fa-pause text-white" style="font-size: 25pt; display: none;" aria-hidden="true"></i>
</a>
<a onclick='executar()'>
<i id='play' class="fa fa-play text-white" style="font-size: 25pt; display: none;" aria-hidden="true"></i>
</a>
<audio id="lofi" src="./audio/lo-fi.mp3" type="audio/mpeg"></audio>
</div>
</nav>
<!-- /Menu | FIM -->
<!-- Container | INICIO -->
<div class="container">
<!-- Config | INICIO -->
<div class="row d-flex justify-content-center mt-5 mb-5">
<div class="col-md-8">
<div id="config" class="row d-flex justify-content-center">
<div class="col">
<!-- Inputs | INICIO -->
<div class="row d-flex justify-content-center">
<div class="col-md-3 d-flex justify-content-center">
<div class="form-group">
<label class="d-flex justify-content-center text-white font-weight-bold"
for="acao">Ação</label>
<input type="number" class="form-control form-control-lg bg-dark border-0 shadow text-white"
id="acao">
<small class="text-danger" id='erro_acao'></small>
</div>
</div>
<div class="col-md-3 d-flex justify-content-center">
<div class="form-group">
<label class="d-flex justify-content-center text-white font-weight-bold"
for="pausa">Pausa</label>
<input type="number" class="form-control form-control-lg bg-dark border-0 shadow text-white"
id="pausa">
<small class="text-danger" id='erro_pausa'></small>
</div>
</div>
<div class="col-md-3 d-flex justify-content-center">
<div class="form-group">
<label class="d-flex justify-content-center text-white font-weight-bold"
for="sessoes">Sessões</label>
<input type="number" class="form-control form-control-lg bg-dark border-0 shadow text-white"
id="sessoes">
<small class="text-danger" id='erro_sessoes'></small>
</div>
</div>
</div>
<!-- /Inputs | FIM -->
<!-- Botão iniciar | INICIO -->
<div class="row mt-5 mb-5 d-flex justify-content-center">
<div class="col-md-9">
<button onclick="iniciar()" class="btn btn-primary shadow btn-lg btn-block">Start</button>
</div>
</div>
<!-- /Botão iniciar | FIM -->
</div>
</div>
</div>
</div>
<!-- /config | FIM -->
<!-- Timer | INICIO -->
<div id="timer" class="mt-0 d-flex justify-content-center">
<div class="row mb-3">
<div class="col">
<h3 id='title' class="text-center"></h3>
</div>
</div>
<!-- Relogio | INICIO -->
<div class="row shadow time">
<div class="col-5 p-0 ">
<h2 id="minutes_ok"></h2>
</div>
<div class="col-1 p-0 d-flex justify-content-center">
<h2>:</h2>
</div>
<div class="col-5 pl-0">
<h2 id="seconds_ok"></h2>
</div>
</div>
<!-- /Relogio | FIM -->
<div class="row mt-5">
<div class="col">
<h3 id='title_sessao' class="text-center text-secondary"></h3>
</div>
</div>
</div>
<!-- /Timer | FIM -->
<!-- Finalização | INICIO -->
<div id="fim" style="display: none;">
<h1 class="text-success text-center">ACABOOOU!! Tempo finalizado.</h1>
<div class="row mt-5 mb-5 d-flex justify-content-center">
<div class="col-md-9 d-flex justify-content-center">
<a href="./index.html" class="btn btn-primary shadow btn-lg">Home</a>
</div>
</div>
</div>
<!-- /Finalização | FIM -->
</div>
<!-- /Container | FIM -->
<script src="./script.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
</body>
</html>