-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevelThree.html
58 lines (56 loc) · 2.35 KB
/
levelThree.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mage Against The Machine</title>
<link rel="stylesheet" href="levels.css">
</head>
<body>
<main id='wrapper'>
<div id='assetWrap'>
<div class="backgrounds" id="layer1"></div>
<div class="backgrounds" id="layer2"></div>
<div class="backgrounds" id="layer3"></div>
<div id='playerContainer'>
<div id='player'>
<p id='spellStatus'></p>
<img id='playerIMG' src="images/Fairy_03__ATTACK_000.png"/>
</div>
<div id='machine'>
<img id='machine4' src="images/idlerobot.gif" style = "height: 600px;"/>
<img id='machine5' src="images/idlerobot.gif" style = "height: 600px;"/>
<img id='machine6' src="images/idlerobot.gif" style = "height: 600px;"/>
</div>
<div class="backgrounds" id="layer4">
<div id='winningMessage'>
You Win!<br>
<h3>Stay Tuned for Pt. 2</h3>
</div>
</div>
</div>
<div id='portalWrap'>
<div class='portal' id='portal3'>
<a href="#" id="portalButton"><img src='./images/portal.gif' style="height: 400px;"/></a>
</div>
</div>
</div>
<div id='consoleWrap'>
<div class='consoles' id='consoleMain'>
<p class="stats" id="HP">Health:</p>
<p class="stats" id="powerLevel">Power Level:</p>
<p class="stats" id="attackSpells">Attack Spells Left:</p>
<p class="stats" id="shiftSpells">Shift Spells Left:</p>
<div id='buttonWrap'>
<button class="spells" id='attackButton'>Attack Spell</button>
<button class="spells" id='shiftButton'>Shift Spell</button>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src='main.js' async defer></script>
</body>
</html>