-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·154 lines (152 loc) · 9.32 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="FastWeGo 是一组 Go 服务快速开发 sdk,支持微信公众号、小程序、小游戏、企业微信、微信支付等微信服务,以及 飞书、钉钉。「快」是核心特性,5 分钟即可完成一套 Go 服务开发。" />
<meta name="author" content="" />
<title>FastWeGo - 微信服务快速开发框架</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Third party plugin CSS-->
<link href="css/magnific-popup.min.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light fixed-top py-3" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">FastWeGo</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto my-2 my-lg-0">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://github.com/fastwego/offiaccount">公众号</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://github.com/fastwego/wxpay">微信支付</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://github.com/fastwego/miniprogram">小程序/小游戏</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://github.com/fastwego/wxwork">企业微信</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://github.com/fastwego/feishu">飞书</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="https://github.com/fastwego/dingding">钉钉</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead">
<div class="container h-100">
<div class="row h-100 align-items-center justify-content-center text-center">
<div class="col-lg-10 align-self-end">
<h1 class="text-uppercase text-white font-weight-bold">Some fast development sdk written in Golang</h1>
<hr class="divider my-4" />
</div>
<div class="col-lg-8 align-self-baseline">
<p class="text-white-75 font-weight-light mb-5">FastWeGo 是一组 Go 服务快速开发 sdk,支持微信公众号、小程序、小游戏、企业微信、微信支付等微信服务,以及 飞书、钉钉。「快」是核心特性,5 分钟即可完成一套 Go 服务开发。</p>
<a class="btn btn-primary btn-xl js-scroll-trigger" href="https://github.com/fastwego/">马上开始 >></a>
</div>
</div>
</div>
</header>
<!-- Services-->
<section class="page-section" id="services">
<div class="container">
<h2 class="text-center mt-0">框架特点</h2>
<hr class="divider my-4" />
<div class="row">
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-balance-scale text-primary mb-4"></i>
<h3 class="h4 mb-2">符合直觉</h3>
<p class="text-muted mb-0">尽可能贴合官方文档和设计,不引入新的概念,降低上手门槛</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-braille text-primary mb-4"></i>
<h3 class="h4 mb-2">拒绝过度封装</h3>
<p class="text-muted mb-0">作为具体业务和微信服务之间的中间层,专注于通道的角色</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-bug text-primary mb-4"></i>
<h3 class="h4 mb-2">完备的单元测试</h3>
<p class="text-muted mb-0">100% 覆盖每一个接口,让你每一次调用都信心满满 </p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-stethoscope text-primary mb-4"></i>
<h3 class="h4 mb-2">活跃的开发者社区</h3>
<p class="text-muted mb-0">拥有庞大的开发者用户群体,遇到问题可以在社区找到解决方案</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-rocket text-primary mb-4"></i>
<h3 class="h4 mb-2">Go 语言开发</h3>
<p class="text-muted mb-0">使用 Go 语言,开发快、编译快、部署快、运行快,轻松服务海量用户</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-laptop-code text-primary mb-4"></i>
<h3 class="h4 mb-2">快速上手</h3>
<p class="text-muted mb-0">丰富的文档 / 教程 和 演示代码 ,手把手演示完整的微信服务开发</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-cubes text-primary mb-4"></i>
<h3 class="h4 mb-2">容易理解</h3>
<p class="text-muted mb-0">独立清晰的模块划分,快速熟悉整个框架,没有意外</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-heart text-primary mb-4"></i>
<h3 class="h4 mb-2">官方文档</h3>
<p class="text-muted mb-0">每个接口的注释都附带官方文档的链接,让你随时翻阅,省时省心</p>
</div>
</div>
</div>
</div>
</section>
<!-- Call to action-->
<section class="page-section bg-dark text-white">
<div class="container text-center">
<h2 class="mb-4">Faster We Go Together !</h2>
<a class="btn btn-light btn-xl" href="https://github.com/fastwego/">Download Now !</a>
</div>
</section>
<!-- Contact-->
<section class="page-section" id="contact">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2 class="mt-0">参与贡献</h2>
<hr class="divider my-4" />
<p class="text-muted mb-5">
FastWeGo 还处于公测阶段,欢迎提交 pr/issue 或者文档,一起让 Go 开发更快更好。<br />
如果你的项目使用了 FastWeGo 欢迎展示到 showcase<br /><br />
遇到问题?微信扫一扫加入讨论组:<br /><br />
<img width="50%" src="assets/img/qr2.png">
</p>
</div>
</div>
</div>
</section>
<!-- Footer-->
<footer class="bg-light py-5">
<div class="container"><div class="small text-center text-muted">Copyright © 2020 - FastWeGo With ♡ From Beijing</div></div>
</footer>
<!-- Bootstrap core JS-->
<script src="js/all.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>