-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (108 loc) · 5.38 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
<!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" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link rel="icon" type="image/svg+xml" href="./assets/favicon.svg">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="./style/style.css" />
<title>Discover the word</title>
</head>
<body>
<!--OBJETIVO E REGRAS-->
<section class="container p-5 info d-flex align-items-center vh-100 flex-wrap flex-md-nowrap">
<div class="row flex-column bg-white p-4">
<div class="col fs-5">
<h1 class="text-center"><i class="bi bi-file-word-fill"></i>Aprimore o seu inglês</h1>
<h3 class="py-3">Objetivo</h3>
<p>Aumentar o seu vocabulário de inglês tentando advinhar uma palavra sorteada de um dicionário</p>
<h3 class="py-3">Regras</h3>
<div class="">
<p>1 - Descubra as letras que compõem a palavra sorteada</p>
<p>2 - Cada letra acertada aparecerá no painel de LETRAS ACERTADAS, mas não necessariamente na ordem em que aparece na palavra</p>
<p>3 - A cada letra que você acertar, você receberá 5s extras</p>
<p>4 - Quando tiver confiante, tente acertar a palavra</p>
<p>5 - Você terá 90s no total para cumprir o objetivo e 3 tentativas para acertar a palavra</p>
</div>
</div>
<div class="col text-center">
<button class="btn btn-lg roxo text-white my-3 start">Jogar</button>
</div>
</div>
<div class="row">
</div>
</section>
<!--JOGO-->
<main class="d-none d-flex flex-column justify-content-center">
<!--PAINEL SCORE-->
<section id="gameScreen" class="container bg-white">
<h1 class="text-center my-5"><i class="bi bi-file-word-fill"></i>Aprimore o seu inglês</h1>
<div id="gameScore" class="row">
<div class="col d-flex justify-content-around lead fs-4 flex-wrap roxo-border p-3 mx-3">
<div>Level: <span id="level" class="fw-bold"></span></div>
<div>Tempo: <span id="timer" class="fw-bold"></span></div>
<div>Tentativas: <span id="attempts" class="fw-bold">0</span></div>
<div>Número de letras: <span id="numLetters" class="fw-bold"></span></div>
</div>
</div>
<!--PAINEL LETRAS CERTAS E ERRADAS-->
<section class="container mb-0 mt-5">
<div class="row flex-column">
<div class="col d-flex justify-content-around flex-column lead fs-4 p-0">
<p>Letras acertadas: <span id="matchLetters">
</span></p>
<p>Letras erradas: <span id="wrongLetters" class="d-flex flex-wrap"></span></p>
</div>
<div class="col text-center d-flex justify-content-center my-5">
<input class="border form-control-lg w-75 mx-2" id="guessWord" type="text" value="" placeholder="Guess the letters!" />
<button id="tryBtn" class="btn btn-lg laranja text-white">Tentar</button>
</div>
</div>
</section>
<!--PAINEL MENSAGENS-->
<section class="container">
<div class="row flex-column">
<!-- <div class="col text-center d-flex justify-content-center">
<span id="message" class="lead fs-3 invisible">Ganhou 5 segundos</span>
</div> -->
<!--DICAS DEPOIS QUE DESCOBRE TODAS AS LETRAS-->
<div class="col invisible dicas lead">
<p class="fs-3 text-center">Você descobriu todas as letras da palavra. Tente agora acertar a palavra.</p>
<h5>Dicas</h5>
<h6>A cada dica utilizada você perderá 10s</h6>
<div>Categoria da palavra: <span id="category"></span></div>
<div><button class="btn btn-secondary hint my-3">Dica 1</button><span class="px-3" id="h1"></span></div>
<div><button class="btn btn-secondary hint my-3">Dica 2</button><span class="px-3" id="h2"></span></div>
<div><button class="btn btn-secondary hint my-3">Dica 3</button><span class="px-3" id="h3"></span></div>
</div>
</div>
</section>
<!--MODAL RESULTADO-->
<div class="modal fade" id="modalResult" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="modal-title"><i class="bi bi-check-circle-fill px-3"></i>Parabéns !</h1>
</div>
<div class="modal-body">
<p id="word" class="fw-bold fs-2"></p>
<p id="message"></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" id="close" data-bs-dismiss="modal">Fechar</button>
<button type="button" class="btn roxo text-white" id="playAgain" data-bs-dismiss="modal">Próximo nível</button>
</div>
</div>
</div>
</div>
</main>
<script src="./js/DiscoverWord.js"></script>
<script src="./js/index.js"></script>
</body>
</html>