-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.05 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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="lib/d3/d3.min.js"></script>
<script type="text/javascript" src="lib/topojson/topojson.js"></script>
<script
type="text/javascript"
src="lib/planetary.js/dist/planetaryjs.min.js"
></script>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<main id="spark">
<header>Spark</header>
<div class="halo"></div>
<canvas id="globe_spark" height="500" width="500"></canvas>
<div class="amount"></div>
<footer>
<table>
<tbody>
<tr></tr>
</tbody>
</table>
</footer>
</main>
<main id="normal">
<header>Normal</header>
<div class="halo"></div>
<canvas id="globe_normal" height="500" width="500"></canvas>
<div class="amount"></div>
<footer>
<table>
<tbody>
<tr></tr>
</tbody>
</table>
</footer>
</main>
<footer>
<div></div>
<span>Times faster</span>
</footer>
<script type="text/javascript" src="index.js"></script>
</body>
</html>