-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Super Smash eachother in the ass Brothers</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="gameContainer" id="gameContainerWiiMenuSplash" onclick="startWiiMenu()">
</div>
<div class="gameContainer" id="gameContainerWiiMenu">
<video src="./assets/bg/wiiMenu/WiiMenuIntro.mp4"></video>
<div id="wiiMenuStartButton" onclick="loadIntroVideo()"></div>
</div>
<div class="gameContainer" id="gameContainerSplashMenu">
<video src="assets/bg/splashMenu/introVideo.mp4"></video>
</div>
<div class="gameContainer" id="gameContainerBrawlMenu">
<div id="player1Box" onclick="changeCursor('P1'); choosingPlayer = 0">
<img src="./assets/cursors/P1.PNG" style="position:absolute; top: 40px; right: 10px">
</div>
<div id="player2Box" onclick="changeCursor('P2'); choosingPlayer = 1">
<img src="./assets/cursors/P2.PNG" style="position:absolute; top: 40px; right: 10px">
</div>
<div class="characterOption" id="Crewmate" onclick="defineCharacter(this.id);" onmouseover="playSound(sfx.hover)">
</div>
<div class="characterOption" id="Sanic" onclick="defineCharacter(this.id)" onmouseover="playSound(sfx.hover)">
</div>
<div class="characterOption" id="Lonk" onclick="defineCharacter(this.id)" onmouseover="playSound(sfx.hover)">
</div>
<div class="characterOption" id="Sans" onclick="defineCharacter(this.id)" onmouseover="playSound(sfx.hover)">
</div>
<div class="characterOption" id="Kirby" onclick="defineCharacter(this.id)" onmouseover="playSound(sfx.hover)">
</div>
<div class="characterOption" id="Bowser" onclick="defineCharacter(this.id)" onmouseover="playSound(sfx.hover)">
</div>
<div id="readyToFight">
<div id="startGameButton" onclick="loadStageSelect()"></div>
</div>
</div>
<div class="gameContainer" id="gameContainerStageSelect">
<div id="battlefieldSelect"></div>
<div id="fdSelect"></div>
</div>
<div class="gameContainer" id="gameContainerMainCanvas">
</div>
<div id="instructions">
<p>
Joueur 1 -
Mouvements: Flèches -
Attaque: Virgule (à droite de M) -
Spécial: Point (à droite de virgule)
</p>
<p>Joueur 2 -
Mouvement: WASD -
Attaque: G -
Spécial: H
</p>
<p>
NOTE: Ne pas appuyer CAPS LOCK / Shift, Utiliser la souris pour naviguer les menus
</p>
</div>
<script src="./script/htmlHelpers.js"></script>
<script src="./script/main.js" type="module"></script>
</body>
</html>