-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<title>Arrow Game - Square</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main">
<div class="container">
<div style="font-size: 80px; margin-bottom: 20px;">正方形箭頭遊戲</div>
<div class="bar">
<p style="font-size: 30px;">大小: </p>
<select class="select" name="size" id="size">
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>
<p style="font-size: 30px;"> 方向數: </p>
<select class="select" name="orientation" id="orientation">
<option value="4">4</option>
<option value="8">8</option>
</select>
</div>
<div style="height: 10pt;"></div>
<button class="button" onclick="generate()">隨機生成</button>
<div style="height: 30pt;"></div>
<div id="row-container"></div>
<div style="height: 50pt;"></div>
<div style="width: 100%; display: flex; flex-direction: row-reverse;">
<button onclick="window.location='hexagon.html'" style="font-size: 30px; border-radius: 5pt; padding: 5pt;">切換至六邊形</button>
</div>
</div>
</div>
<script src="square-code.js"></script>
</body>
</html>