-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPanorama.html
36 lines (34 loc) · 1.33 KB
/
Panorama.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css">
<title>Panorama</title>
<script src="scripts/main.js" type="text/javascript"></script>
<script src="scripts/quadTree.js" type="text/javascript"></script>
<script src="scripts/subjects.js" type="text/javascript"></script>
</head>
<body onLoad="panorama.oracleInit()">
<header style="color: white;">Panorama</header>
<canvas id="oracle" width="800" height="450" style="background-color: #404040;">
Your browser does not support HTML5 Canvas, try using Google Chrome!
</canvas>
<div id='centerWrap'>
<button onclick="blur()" type="button" id="b1"></button>
<button onclick="blur()" type="button" id="b2"></button>
<button onclick="blur()" type="button" id="b3"></button>
<button onclick="blur()" type="button" id="b4"></button>
<button onclick="blur()" type="button" id="b5"></button>
</div>
<canvas id="oracleInterface" width="800" height="100" style="background-color: #404040;">
Your browser does not support HTML5 Canvas, try using Google Chrome!
</canvas>
</body>
</html>
<!--
Credits:
Steven Lambert [quadTree]: https://github.com/straker/
Font used: Courier New + Impact
Reminder: Golden Ratio! [1 to .618]
To-Do: Design layout based on Adsense.
-->