2022-03-02 16:02:52 +08:00

39 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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" />
<link rel="icon" href="/favicon.ico" />
<title>茄子统计</title>
</head>
<body>
<div class="app">
免费UV,PV统计也可直接使用,也可进行私有部署后使用。<br />
使用文档见:<a href="https://github.com/FleyX/qieziStatistics">开始使用</a>
</div>
<!-- 页面PV -->
<div style="text-align: center">
<div id="qieziStatisticHtmlPost" style="display: none">当前页面访问次数:<span id="qieziStatisticHtmlPostPv"></span>&nbsp;</div>
</div>
<!-- 网站整体UV/PV -->
<div style="text-align: center">
<div id="qieziStatisticHtmlHostPv" style="display: none">总访问次数:<span id="qieziStatisticHtmlHostPvValue"></span>&nbsp;</div>
<div id="qieziStatisticHtmlHostUv" style="display: none">&nbsp;总访客数:<span id="qieziStatisticHtmlHostUvValue"></span></div>
</div>
<script>
//设置实际部署的host和key
//window.qieziStatisticHost = "http://localhost:8080";
window.qieziStatisticKey = "47e78c8dffb5491e907e2f2a8d410869";
</script>
<script src="/qiezijs/1.0/qiezi_statistic.js" type="text/javascript"></script>
<style>
.app {
width: 80%;
margin: 0 auto;
text-align: center;
}
</style>
</body>
</html>