-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (58 loc) · 2.2 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
<!DOCTYPE html>
<html lang="pt">
<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"> -->
<meta name="viewport" content="width=500, initial-scale=1">
<title>Quebra-Cabeça Slide</title>
<script defer src="./scripts/index.js"></script>
<link rel="stylesheet" href="./styles/index.css">
</head>
<body>
<div class="container">
<header class="header">
<button id="helpButton" class="headerButton"
onclick="document.querySelector('#help').style.display = 'flex'">
COMO JOGAR?
</button>
<h1>Quebre a cabeça</h1>
</header>
<div id="alert">
VOCÊ JÁ COMPLETOU O DESAFIO!
</div>
<main id="board">
</main>
<button id="play" onclick="tab.shuffle()" >
CLIQUE PARA EMBARALHAR! <br/>
DEPOIS AGUARDE!
</button>
<div id="movesCounter">
</div>
<div id="finished" class="finished">
QUEBRA-CABEÇA COMPLETADO!
</div>
<div id="help">
<h2>COMO JOGAR?</h2>
<button id="closeHelp"
onclick="document.querySelector('#help').style.display = 'none'" class="headerButton">
Fechar
</button>
<text>
Seu objetivo é resolver o quebra cabeça.
<ul>
<li>
Primeiro: Clique "CLIQUE PARA EMBARALHAR! DEPOIS AGUARDE!"
</li>
Assim que o quebra-cabeça for embaralhado você poderá resolvê-lo. Então:
<li>
Segundo: clique no bloco que você deseja mover para o espaço vazio, vá fazendo isso até conseguir a imagem perfeita.
Que hoje é:<br/>
<img alt='Imagem desejada' width="240px" id="imgHelp"class='imgBlock' src = ''/>
</li>
</ul>
</text>
</div>
</div>
</body>
</html>