-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
42 lines (38 loc) · 956 Bytes
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>说明</title>
<style>
.box {
margin: 100px auto;
width: 500px;
}
.back {
display: block;
width: 100px;
height: 40px;
line-height: 40px;
background-color: #42b983;
color: #fff;
cursor: pointer;
text-align: center;
text-decoration: none;
border-radius: 8px;
}
</style>
</head>
<body>
<div class="box">
<h2>* 使用方法(需要在服务器环境打开)</h2>
<p>在当前目录执行以下命令即可(前提已安装node环境)</p>
<p>npm i -g http-server</p>
<p>hs -o</p>
<p></p>
<p>浏览器(IE10及以上)打开localhost:8080</p>
<p></p>
<p>其他php .net java请自行搭建环境使用</p>
<a href="./#/" class="back">返回首页</a>
</div>
</body>
</html>