-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (131 loc) · 4.17 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="vanilla JS checkers, author: Netanel Haber">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vanilla JS checkers</title>
<link rel="preload" as="image" href="/red.webp" />
<link rel="preload" as="image" href="/black.webp" />
<link rel="preload" as="image" href="/red-king.webp" />
<link rel="preload" as="image" href="/black-king.webp" />
<script>
function set() {
let cell_size = Math.min(Math.min(window.innerHeight, window.innerWidth) * 0.121, 67);
document.documentElement.style.setProperty('--cellsize', `${cell_size}px`);
}
set();
window.addEventListener("resize", set);
</script>
<style>
@import url("./src/index.css");
</style>
</head>
<body>
<div id="containerBoard">
<div id="board">
<label id="ai-label">
<input id="ai" checked type="checkbox" name="ai-on" />
AI
</label>
<table id="table">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<div id="containerTurn"> current turn
<div id="turnDiv"></div>
<div class="buttons">
<button id="reset">Reset</button>
<button id="share">Share</button>
<button id="undo">Undo ←</button>
<button id="redo">Redo →</button>
</div>
</div>
<div id="trailingDiv"></div>
</div>
<a target="_blank" rel="noopener noreferrer" href="https://github.com/netanel-haber/checkers" id="github">
<img id="github-icon" src="/github-icon.webp" />
</a>
<script type="module" src="/src/main.ts"></script>
</body>
</html>