-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
37 lines (34 loc) · 1.25 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- Level Selection Container -->
<div id="level-selection" style="display: block;">
<h1>選擇關卡</h1> <!-- Title for level selection -->
<div id="level-buttons">
<!-- Dynamically create or statically place your level buttons here -->
<button class="level-btn">1</button>
<button class="level-btn">2</button>
<button class="level-btn">3</button>
<button class="level-btn">4</button>
<button class="level-btn">5</button>
</div>
</div>
<!-- Game Screen Container -->
<div id="game-container" style="display: none;">
<h1>中文字猜猜看</h1>
<div id="progress-bar-container">
<div id="progress-bar">
<img id="progress-icon" src="icon/spaceship.png" alt="Progress Icon" />
</div>
</div>
<button id="speak-btn">讀出問題 🔊</button>
<div id="speech-input" style="display:none;"></div>
<div id="button-container"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="main.js"></script>
</body>
</html>