-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 983 Bytes
/
index.html
File metadata and controls
57 lines (51 loc) · 983 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Tetris</title>
<style>
#jeu {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
/*
* Gameboard
*/
#jeu #gameboard {
position: relative;
float: left;
}
#jeu #gameboard #board-game {
position: absolute;
}
/*
* Preview
*/
#jeu #preview {
float: right;
position: relative;
margin-left: 8px;
}
#jeu #preview #board-pvw {
position: absolute;
}
</style>
</head>
<body>
<div id="jeu">
<div id="score-board">
Score: <span id="score">0</span>
</div>
<div id="gameboard">
<canvas id="board-game"></canvas>
<canvas id="background-game"></canvas>
</div>
<div id="preview">
<canvas id="board-pvw"></canvas>
<canvas id="background-pvw"></canvas>
</div>
</div>
<script src="app.js"></script>
</body>
</html>