-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (32 loc) · 1.07 KB
/
index.html
File metadata and controls
42 lines (32 loc) · 1.07 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BlockBlast Solver</title>
<link rel="stylesheet" href="css/master.css" />
<link rel="stylesheet" href="css/automatic.css" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3013850043603569"
crossorigin="anonymous"></script>
</head>
<body>
<button id="manualBtn">Or Manually Input It</button>
<br />
<input type="file" id="image-upload" accept="image/*" />
<canvas id="canvas"></canvas>
<div id="result">
<h2>Starting Grid:</h2>
<div class="main-grid-container">
<div class="grid" id="main-grid"></div>
</div>
<h3>Pieces:</h3>
<div class="small-grids-container">
<div class="grid" id="small-grid-1"></div>
<div class="grid" id="small-grid-2"></div>
<div class="grid" id="small-grid-3"></div>
</div>
<div id="moves"></div>
</div>
<script type="module" src="js/automatic.js" defer></script>
</body>
</html>