forked from spaceapi-community/hackerspace-globe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (36 loc) · 1.7 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>WebGL Globe</title>
<script src="jquery-1.7.1.min.js"></script>
<script src="globe/third-party/Three/ThreeWebGL.js"></script>
<script src="globe/third-party/Three/ThreeExtras.js"></script>
<script src="globe/third-party/Three/RequestAnimationFrame.js"></script>
<script src="globe/third-party/Three/Detector.js"></script>
<script src="globe/third-party/Tween.js"></script>
<script src="globe/globe.js"></script>
<script src="globe.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="globeContainer"></div>
<div id="blurbLeft">
<h2>HackerSpaces</h2>
<p><span style="color:#00ff00; font-weight:bold">Green is open</span>, <span style="color:#ff0000; font-weight:bold">Red is closed</span>.</p>
<p>Spin globe by dragging. Zoom with scrolly wheel.</p>
</div>
<div id="blurbRight">
<p>
Hacked up with <a href="http://spaceapi.net" target="_blank">The HackerSpace Status API</a> and <a href="http://code.google.com/p/webgl-globe/" target="_blank">The WebGL Globe</a>.
</p>
<p>
<a href="https://github.com/spaceapi/hackerspace-globe" target="_blank">Code on GitHub</a>.
</p>
<p>
By <a href="http://twitter.com/joewalnes" target="_blank">@joewalnes</a>
(with inspiration from <a href="http://twitter.com/toba" target="_blank">@toba</a> and <a href="http://twitter.com/osi" target="_blank">@osi</a>
and contribution of <a href="http://twitter.com/rohieb" target="_blank">@rohieb</a> and <a href="http://twitter.com/slopjong" target="_blank">@slopjong</a>).
</p>
</div>
</body>
</html>