-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (47 loc) · 1.99 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
<!doctype html>
<html>
<head>
<title>Review Network</title>
<script type="text/javascript" src="script/vis.js"></script>
<script type="text/javascript" src="script/vis-network.min.js"></script>
<link href="css/vis.css" rel="stylesheet" type="text/css" />
<link href="css/main.css" rel="stylesheet" >
<link href="css/font-awesome/css/font-awesome.min.css" rel="stylesheet"> <!--load all styles -->
<script src="//cdnjs.cloudflare.com/ajax/libs/seedrandom/3.0.5/seedrandom.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/alea.js"></script>
<script type="text/javascript" src="script/exampleUtil.js"></script>
</head>
<body>
<h1><i style="color: #ffc754;" class="fa fa-star" aria-hidden="true"></i> Play Store Review Network</h1>
<label>
Filter nodes:
<select id="nodeFilterSelect">
<option value>All</option>
<option value="app">All Apps</option>
<option value="top">Top Apps</option>
<option value="author">Authors</option>
<option value="custom">Custom</option>
</select>
<form onsubmit="return false;">
<label for="nodeCount">Application name:</label>
<input id="nodeCount" type="text" value="" style="width: 150px" />
<input type="button" value="Filter" onclick="nodesFilter()" />
</form>
<a style="text-align: center">Filter edges:</a>
<label>
<input type="checkbox" name="edgesFilter" value="positive" checked /><span style="color: blue">Positive</span>
</label>
<label>
<input type="checkbox" name="edgesFilter" value="negative" checked /><span style="color: red">Negative</span>
</label>
<label>
<input type="checkbox" name="edgesFilter" value="neutral" checked /><span style="color: black">Neutral</span>
</label>
</label>
<br/>
<br/>
<div id="mynetwork"></div>
<script src="script/main.js"></script>
<p>Copyright © 2021 <a href="https://jaimedantas.com">Jaime</a>, <a href="https://github.com/AlexanderWHGregor">Alex</a> and <a href="https://github.com/aruncal">Arun</a>.</p>
</body>
</html>