-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbigboy.html
45 lines (41 loc) · 2.37 KB
/
bigboy.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
<!DOCTYPE html>
<html>
<head>
<title>Mapper Influences</title>
<meta charset="utf-8">
<meta name="viewport" width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0>
<style> body { padding: 0; margin: 0;} canvas {image-rendering: pixelated;}</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="util/db.js"></script>
<script src="processing/p5.min.js"></script>
<script src="processing/bigboy.js"></script>
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body style="overflow: hidden;">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Treeview</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="bigboy.html">Chart</a>
</li>
<li class="nav-item">
<a class="nav-link" href="stats.html">Stats</a>
</li>
</ul>
<span class="nav-item" style="padding-right:30px; font-size:10px;" data-toggle="tooltip" title="'mentions' refer to each time someone is included in someone else's influences list">move with mouse/arrow keys, zoom with scroll | time=x, # of mentions=y | chart includes mappers with 2+ generations of influences | colors have no meaning</span><br>
<form id="submitBigBoy" method="get" class="form-inline">
<input id="user" type="text" placeholder="Username/id" name="user" class="form-control mr-sm-2">
<button type="submit" class="btn btn-outline-primary">Submit</button>
</form>
</div>
</nav>
</body>
</html>