-
Notifications
You must be signed in to change notification settings - Fork 4
/
stats.html
38 lines (30 loc) · 1.05 KB
/
stats.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
<html>
<head>
<script src="lib.js"></script>
<script src="flot/jquery.min.js"></script>
<script src="flot/jquery.flot.js"></script>
<script src="flot/jquery.flot.selection.min.js"></script>
<script src="stats.js"></script>
<link rel="stylesheet" href="stats.css" type="text/css" />
<title>Crackbook Statistics</title>
</head>
<body>
<h1>Visits per day</h1>
<div id="logPlot-container">
<div id="logPlot" style="height: 500px; width: 900px"></div>
<div class="zoomout">Drag on the plot to zoom in. <a href="#">Zoom out</a></div>
</div>
<div id="browser-hist">
<a href="#browser-history" id="show-browser-history-visits">
Show plot based on browser history
</a>
<!-- TODO: add explanation -->
</div>
<div id="browser-history-visits" style="display: none">
<a name="browser-history"></a>
<h2>Visits per day (based on browser history)</h2>
<div id="histPlot" style="height: 500px; width: 900px"></div>
<div class="zoomout">Drag on the plot to zoom in. <a href="#">Zoom out</a></div>
</div>
</body>
</html>