-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
51 lines (48 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://a.amap.com/jsapi_demos/static/demo-center/css/demo-center.css" />
<style>
html,
body,
#container {
width: 100%;
height: 100%;
}
div.main {
margin: 0 auto;
position: fixed;
bottom: 20px;
left: 50%;
transform: translate(-50%,0);
z-index: 5000000;
}
input {
height: 40px;
width: 80px;
border-radius: 20px;
background: #215798;
color: #fff;
border: none;
outline: 0;
line-height: 40px;
}
</style>
</head>
<body>
<div class="main">
<input id="btn" type="button" value="开始录音" />
</div>
<div id="container"></div>
<script type="text/javascript" src="./static/HZRecorder.js"></script>
<script src="./static/jquery.js"></script>
<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.11&key=dd79c3382cc80cc44e6f4a2ad547c912"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/layer/2.3/layer.js"></script>
<script src="./static/data.js"></script>
<script src="./static/index.js"></script>
</body>
</html>