-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
68 lines (61 loc) · 2.41 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" type="text/css" href="css/spiralMenu.css" />
<title>Wikidata Spiral</title>
</head>
<body>
<div id="main">
<div class="scroll-indicator"></div>
<div class="wp-panel" style="display: none;">
<iframe></iframe>
</div>
</div>
<footer id="footer">
<nav>
[
<a target="_blank" href="https://github.com/cdrini/wikidata-spiral">GitHub</a>
| <a target="_blank" href="https://github.com/cdrini/wikidata-spiral#usage">Help</a>
| <a data-popup="options" href="#">Options</a>
| <a data-popup="examples" href="https://github.com/cdrini/wikidata-spiral#examples">Examples</a>
]
</nav>
</footer>
<div id="options" class="popup">
<form class="main">
<label>
<input type="checkbox" name="show_wp_panel" checked> Show Wikipedia Panel
</label>
</form>
</div>
<div id="examples" class="popup">
<ul class="main">
<li><a href="?root=Q2095&property=P279">Explore food</a></li>
<li><a href="?root=Q40050&property=P279">Explore drinks</a></li>
<li><a href="?root=Q2382443&property=P171">Subtaxons of all life</a></li>
<li><a href="?root=Q2&property=P131|P706|P361">Explore Earth</a></li>
<li><a href="?root=Q1&property=P131|P706|P361">Explore the Universe</a></li>
<li><a href="?root=Q5582&property=P170&slices=9">Works by van Gogh</a></li>
</ul>
</div>
<!-- Snap.svg -->
<script src="js/lib/snap.svg-min.js"></script>
<!-- JQuery + plugins -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/lib/jquery.hotkeys.js"></script>
<!-- SpiralMenu code -->
<script src="js/SpiralMenu/utils.js"></script>
<script src="js/SpiralMenu/SpiralMenuItem.js"></script>
<script src="js/SpiralMenu/SpiralMenuItemView.js"></script>
<script src="js/SpiralMenu/SpiralMenu.js"></script>
<!-- Wikidata spiral code -->
<script src="js/WD/WD.js"></script>
<script src="js/WD/Entity.js"></script>
<script src="js/wikidata-spiral/utils/params.js"></script>
<script src="js/wikidata-spiral/utils/wikidata.js"></script>
<script src="js/wikidata-spiral/wikidata-spiral.js"></script>
</body>
</html>