forked from theraccoonbear/BrowserGORILLAS.BAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·86 lines (81 loc) · 3.55 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
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>Gorillas.bas</title>
<!--<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">-->
<!--<meta name="apple-mobile-web-app-capable" content="yes">-->
<!--<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent">-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/jquery-ui.min.css" integrity="sha512-Byqs9gIw/uRTIPJARi4+dwNacBseqPKwvBcZGjv4B6GSX24QayhehjMMP/uEaII17wlkxtbwvkvSxOoIFbCQqQ==" crossorigin="anonymous">
<link type="text/css" href="css/gorillas.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/jquery-ui.min.js" integrity="sha512-57oZ/vW8ANMjR/KQ6Be9v/+/h6bq9/l3f0Oc7vn6qMqyhvPd1cvKBRWWpzu0QoneImqr2SkmO4MSqU+RpHom3Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="js/jquery.ui.touch.js"></script>
<script src="js/2D.js"></script>
<script src="js/Intersection.js"></script>
<script src="js/gorillas.js"></script>
</head>
<body>
<div id="game">
<div class="playerInfo" id="info1">
<span class="name active">Player 1</span>
<br/>
<div class="launch">
<span class="label">Angle:</span>
<span class="angle">45</span>
<br/>
<span class="label">Velocity:</span>
<span class="velocity">50</span>
<br/>
<span class="label">Score:</span>
<span class="score">0</span>
</div>
</div>
<div class="playerInfo" id="info2">
<span class="name">Player 2</span>
<br/>
<div class="launch">
<span class="label">Angle:</span>
<span class="angle">45</span>
<br/>
<span class="label">Velocity:</span>
<span class="velocity">50</span>
<br/>
<span class="label">Score:</span>
<span class="score">0</span>
</div>
</div>
</div>
<div class="controls">
<table>
<tr>
<td>ANG</td>
<td>VEL</td>
</tr>
<tr>
<td>
<div id="angSlider" class="ctl"></div>
</td>
<td>
<div id="velSlider" class="ctl"></div>
</td>
</tr>
<tr>
<td colspan="2">
<div style="height: 25px;"></div>
<a href="#" id="throw" style="text-decoration: none;">
<div class="button">
<div style="position:absolute; top:50%; margin-top: -18px; margin-left: 15px; text-decoration: none;">
THROW
<br/>
BANANA
</div>
</div>
</a>
</td>
</tr>
</table>
</div>
</body>
</html>