Claw Game progress

Errors resulting from Prize.js currently.

- still using the original images, need to switch those out
- need to remove unneeded code/commented attempts
- need to code win-functionality (close game, give prize)
- need to code in prize orbs, arcade circuit items
This commit is contained in:
FalseIncarnate
2015-12-06 02:26:12 -05:00
parent a915a5a0fb
commit bc5faea093
25 changed files with 579 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Crane game</title>
<link rel="stylesheet" type="text/css" href="page.css" />
<script src="./jquery.js"></script>
<script src="./Crane.js"></script>
<script src="./Prize.js"></script>
<script src="./main.js"></script>
</head>
<body>
<div id='game' style='position: relative;'>
<div id="background"></div>
<div id="crane">
<div id="crane-handle-top"></div>
<div id="crane-handle-bottom"></div>
<div id="crane-claw"></div>
<div id="crane-center"></div>
</div>
<div id="grayorbs-chute"></div>
<div id="foreground"></div>
</div>
<div style='position: absolute; top: 550px'>
<br><button onclick="gameStartUp()">Play Now!</button>
<br>
<button onmouseover="joystickControlOn('left')" onmouseout="joystickControlOff('left')">/==<br>\==</button>
<button onmousedown="joystickControlOn('down')" onmouseup="joystickControlOff('down')">DROP<br>CLAW</button>
<button onmouseover="joystickControlOn('right')" onmouseout="joystickControlOff('right')">==\<br>==/</button>
</div>
</body>
</html>