-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebstat.html
31 lines (29 loc) · 1.19 KB
/
webstat.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
<!DOCTYPE HTML>
<html>
<head>
<title>Web Stat</title>
<style>
body {min-width: 250px;}
.StatItem {width:500px; height:300px;float:left;margin:12px;}
</style>
<script src='jquery.min.js'></script>
<script type="text/javascript" src="jquery.jqplot.min.js"></script>
<script type="text/javascript" src="jqplot.dateAxisRenderer.min.js"></script>
<script type="text/javascript" src="jqplot.canvasTextRenderer.min.js"></script>
<script type="text/javascript" src="jqplot.canvasAxisTickRenderer.min.js"></script>
<script type="text/javascript" src="jqplot.barRenderer.min.js"></script>
<script type="text/javascript" src="jqplot.categoryAxisRenderer.min.js"></script>
<script type="text/javascript" src="jqplot.pointLabels.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.jqplot.min.css" />
<script src='domainlist.js'></script>
<script src='webstat.js'></script>
</head>
<body>
<h2>Web Visit Stat</h2>
<div class="StatItem" id="Top10CountStat"></div>
<div class="StatItem" id="Top10Time"></div>
<div class="StatItem" id="DayTimeStat"></div>
<div class="StatItem" id="MonthTimeStat"></div>
<div class="StatItem" id="TypeStat"></div>
</body>
</html>