-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
54 lines (49 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arkanoid Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Background Selector -->
<div id="background-selector">
<label for="bg-select">Choose Background:</label>
<select id="bg-select">
<option value="background2.png">Classic (Current)</option>
<option value="background.png">Alternative 1</option>
<option value="background1.png">Alternative 2</option>
</select>
</div>
<div id="main" class="main">
<canvas id="playField" width="1000" height="600"></canvas>
<img id="background" src="./images/background2.png" alt="Game background image"></img>
<!-- Taunt Speech Bubbles -->
<div id="taunt-left" class="speech-bubble left-side hidden">
<div class="bubble-content">
<span class="taunt-text"></span>
<div class="bubble-tail"></div>
</div>
</div>
<div id="taunt-right" class="speech-bubble right-side hidden">
<div class="bubble-content">
<span class="taunt-text"></span>
<div class="bubble-tail"></div>
</div>
</div>
<div id="taunt-bottom" class="speech-bubble bottom-side hidden">
<div class="bubble-content">
<span class="taunt-text"></span>
<div class="bubble-tail"></div>
</div>
</div>
<div id="display">
<div id="score"></div>
<button id="start">Start</button>
<div id="info">Lets Play!</div>
</div>
</div>
<script type="module" src="./index.js"></script>
</body>
</html>