-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrebuildShip.html
46 lines (45 loc) · 2.32 KB
/
rebuildShip.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Ship Rebuild</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
canvas {
border: 1px solid white;
background-color: grey;
}
img{
visibility: hidden;
}
</style>
</head>
<body>
<canvas id = "myCanvas" width = "1280" height="720"></canvas>
<script src = "rebuildShip.js"></script>
<script src = "loadingImagesRebuildingShip.js"></script>
<script src = "randomMaterialsNeededRebuildingShip.js"></script>
<script src = "printingRebuildShip.js"></script>
<script src = "onKeyUp.js"></script>
<br>
<img id = "background" width= "1" height="1" src = "Astroid Base.png" alt = "Background Image">
<img id = "fuel" width = "1" height = "1" src = "fuel.png" alt = "Fuel">
<img id = "iron" width = "1" height = "1" src = "iron.png" alt = "Iron">
<img id = "copper" width = "1" height = "1" src = "copper.png" alt = "Copper">
<img id = "stars" width = "1" height "1" src = "stars.png" alt = "Stars">
<img id = "alien" width = "1" height = "1" src = "alien.png" alt = "Alien">
<img id = "speechBubble" width = "1" height = "1" src = "speechBubble.png" alt = "Speech Bubble">
<img id = "yes" width= "1" height= "1" src = "yes.png" alt = "Yes Button">
<img id = "no" width= "1" height= "1" src = "no.png" alt = "No Button">
<img id = "scannedYes" width= "1" height= "1" src = "scannedYes.png" alt = "Scanned Yes Button">
<img id = "scannedNo" width= "1" height= "1" src = "scannedNo.png" alt = "Scanned No Button">
<img id = "menu" width = "1" height = "1" src = "menu.png" alt = "Menu">
<img id = "scannedMenu" width = "1" height = "1" src = "scannedMenu.png" alt = "Scanned Menu">
<img id = "dropDown" width = "1" height = "1" src = "dropDown.png" alt = "DropDown Menu">
<img id = "plus" width = "1" height = "1" src = "plus.png" alt = "Plus Button">
<img id = "minus" width = "1" height = "1" src = "minus.png" alt = "Minus Button">
<img id = "scannedPlus" width = "1" height = "1" src = "scannedPlus.png" alt = "Scanned Plus">
<img id = "scannedMinus" width = "1" height = "1" src = "scannedMinus.png" alt = "Scanned Minus">
</body>
</html>