-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 952 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<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" />
<title>@minesweeper###</title>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<pre>
/*
@minesweeper###
the field is a square with a side of <span contenteditable="true" id="side"></span> (changeable)
"*"s are mines; there are <span contenteditable="true" id="mines"></span> (changeable) of them on the field
use left click to reveal hidden cell
numbers in revealed cells show mines count in 8 surrounding cells
use right click to mark cell as a mine or auto-reveal surrounding tiles
revealed <span id="revealed-count">0</span> of <span id="total">90</span>
*/
</pre>
<pre id="field"></pre>
<script type="module" src="./index.mjs"></script>
</body>
</html>