-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.3 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
<html>
<head>
<title>WIKI VIZ</title>
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<nav>
<div>
<h1>WikiViz</h1>
<p id="subheader">Visualize Wikipedia Page Connections</p>
</div>
<div style="display: flex; flex-direction: row;">
<iframe
class="sponsor"
src="https://github.com/sponsors/theswerd/button"
title="Sponsor theswerd"
height="35"
width="116"
style="border: 0"
></iframe>
<a href="https://github.com/theswerd/wikiviz" class="social">
<img src="assets/githublogo.png" height="30"/>
</a>
</div>
</nav>
<center id="enter_url">
<h2>Enter a Wikipedia URL</h2>
<div>
<prefix>https://en.wikipedia.org/wiki/</prefix>
<input size="10" type="text" id="baseURL" onsubmit="getConnections()" autofocus/>
</div>
<div style="height: 10px"></div>
<button id="getConnections" class="disabled" onclick="getConnections()">
Get Connections
</button>
<p id="loadingMessage"></p>
</center>
<center>
<svg id="graphic" width="960" height="600"></svg>
</center>
<script src="js/index.js"></script>
</body>
</html>