2022-02-27 23:15:07 -09:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
2022-11-25 16:34:34 +08:00
|
|
|
|
<link rel="icon" href="/ico.png" />
|
2022-02-27 23:15:07 -09:00
|
|
|
|
<title>茄子统计</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2022-03-02 16:02:52 +08:00
|
|
|
|
<div class="app">
|
2022-11-25 16:34:34 +08:00
|
|
|
|
<div class="desc">
|
|
|
|
|
个人站点UV、PV统计,支持页面显示,常用于个人博客展示阅读数。比如我的个人博客:<a href="https://blog.fleyx.com/">FleyX's Blog</a><br />
|
|
|
|
|
支持开箱即用,只需几行代码即可为您的站点加上统计数据。<br />
|
|
|
|
|
代码完全开源于<a href="https://github.com/FleyX/qieziStatistics">github</a>,因此也支持自行独立部署使用。<br />
|
|
|
|
|
支持站点数据excel导出,方便切换统计工具。<br />
|
2022-11-25 16:46:08 +08:00
|
|
|
|
<a href="/manage/">开始使用吧</a>
|
2022-11-25 16:34:34 +08:00
|
|
|
|
</div>
|
2022-03-02 16:02:52 +08:00
|
|
|
|
</div>
|
2022-03-02 15:52:04 +08:00
|
|
|
|
<!-- 页面PV -->
|
2022-11-25 16:34:34 +08:00
|
|
|
|
<div style="position: fixed; bottom: 0; width: 100%">
|
|
|
|
|
<div style="text-align: center">
|
|
|
|
|
<div id="qieziStatisticHtmlPost" style="display: none">当前页面访问次数:<span id="qieziStatisticHtmlPostPv"></span>次 </div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 网站整体UV/PV -->
|
|
|
|
|
<div style="text-align: center">
|
|
|
|
|
<div id="qieziStatisticHtmlHostPv" style="display: none">总访问次数:<span id="qieziStatisticHtmlHostPvValue"></span>次 </div>
|
|
|
|
|
<div id="qieziStatisticHtmlHostUv" style="display: none"> 总访客数:<span id="qieziStatisticHtmlHostUvValue"></span>人</div>
|
|
|
|
|
</div>
|
2022-03-02 15:52:04 +08:00
|
|
|
|
</div>
|
|
|
|
|
<script>
|
|
|
|
|
//设置实际部署的host和key
|
2022-03-02 16:02:52 +08:00
|
|
|
|
//window.qieziStatisticHost = "http://localhost:8080";
|
|
|
|
|
window.qieziStatisticKey = "47e78c8dffb5491e907e2f2a8d410869";
|
2022-03-02 15:52:04 +08:00
|
|
|
|
</script>
|
2022-03-01 23:31:20 +08:00
|
|
|
|
<script src="/qiezijs/1.0/qiezi_statistic.js" type="text/javascript"></script>
|
2022-03-02 15:52:04 +08:00
|
|
|
|
<style>
|
|
|
|
|
.app {
|
|
|
|
|
width: 80%;
|
|
|
|
|
margin: 0 auto;
|
2022-11-25 16:34:34 +08:00
|
|
|
|
margin-top: 20vh;
|
2022-03-02 15:52:04 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2022-11-25 16:34:34 +08:00
|
|
|
|
.desc {
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
2022-03-02 15:52:04 +08:00
|
|
|
|
</style>
|
2022-02-27 23:15:07 -09:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|