-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (95 loc) · 3.81 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="./css/pure-min.css">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/typed.min.js"></script>
<meta charset=utf8>
<link rel="stylesheet" href="./css/grids-responsive-min.css">
<title>GO-CQHTTP ✨ 基于 Mirai 以及 MiraiGo 的 cqhttp golang 原生实现 ✨</title>
</head>
<body>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YSMJQ8DKWX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YSMJQ8DKWX');
</script>
<div class="header">
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
<a class="pure-menu-heading" href="">GO-CQHTTP</a>
<ul class="pure-menu-list">
<li class="pure-menu-item"><a href="https://docs.go-cqhttp.org" class="pure-menu-link">Docs</a></li>
<li class="pure-menu-item"><a href="https://github.com/Mrs4s/go-cqhttp/releases"
class="pure-menu-link">Downloads</a></li>
<li class="pure-menu-item"><a href="https://github.com/Mrs4s/go-cqhttp"
class="pure-menu-link">Github</a></li>
</ul>
</div>
</div>
<div class="splash-container">
<div class="splash">
<h1 class="splash-head">go-cqhttp</h1>
<p class="splash-subhead">
<span id="typed1"></span>
</p>
</div>
</div>
<div class="content-wrapper">
<div class="content-dead"></div>
<div class="content">
<h2 class="content-head is-center">优势</h2>
<div class="pure-g">
<div class="l-box pure-u-1 pure-u-md-1-4">
<h3 class="content-subhead">
高并发
</h3>
<p>
利用golang优势,实现高并发,加快信息发送!
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-4">
<h3 class="content-subhead">
轻量化
</h3>
<p>
缩小体积,减小对CPU/RAM的消耗,即使是路由器也可以轻松运行!
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-4">
<h3 class="content-subhead">
跨平台
</h3>
<p>
可跨平台使用,无论是Linux、Mac还是Windows,无论是ARM、i386还是AMD64,都可以运行!
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-4">
<h3 class="content-subhead">
简单化
</h3>
<p>
不需要安装任何其它运行环境!开箱即用!
</p>
</div>
</div>
</div>
<div class="content-dead"></div>
<div class="footer l-box is-center">
<p>AGPL-3.0 Licensed | Copyright © 2020-present Mrs4s</p>
</div>
</div>
<script type="text/javascript">
var typed1 = new Typed('#typed1', {
strings: ['[It is: <strong>Blazing fast</strong>]', '[It is: <strong>Cross-platform</strong>]', '[It is: <strong>Native-coded</strong>]', '[It is: <strong>GO-CQHTTP!</strong>] ^10000 '],
typeSpeed: 15,
backSpeed: 20,
cursorChar: '_',
smartBackspace: true,
loop: true
});
</script>
</body>
</html>