-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HaNoi Towers game | HaiZuka</title>
<link rel="icon" type="image/x-icon" href="./assets/images/favicon.ico">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="./css/modal.css">
<meta
name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'
/>
</head>
<body>
<canvas id = 'canvas'></canvas>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h1> Trò chơi tháp Hà Nội</h1>
<h3>Luật chơi</h3>
<p>
Nhiệm vụ của bạn là di chuyển tất cả các đĩa từ cột thứ 1 qua một trong 2 cột còn lại<br>
Bạn chỉ được phép di chuyển một đĩa mỗi lần, và không được đặt đĩa lớn hơn lên đĩa nhỏ hơn.
</p>
<h3>Các phím tắt</h3>
<div class="center">
<table>
<tr>
<td>R</td>
<td>Làm mới màn chơi hiện tại</td>
</tr>
<tr>
<td>N</td>
<td>Tăng độ khó thêm 1</td>
</tr>
<tr>
<td>p</td>
<td>Giảm độ khó xuống 1</td>
</tr>
</table>
</div>
<input type="button" id="input-close" value="Đã hiểu">
</div>
</div>
</body>
<script src="./js/modal.js"></script>
<script type="text/javascript" src="js/rectangle.js"></script>
<script type="text/javascript" src="js/game.js"></script>
</html>