-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (50 loc) · 1.33 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
<div class="text-center" id="recorddiv">
<a
class="inline-block btnRound-thin btnRound-orange"
id="record"
onclick="globalstartrecording()"
style="color: black"
><b>錄音</b></a
>
</div>
<div class="text-center" id="timer"> </div>
<p> </p>
<div class="text-center" id="stopdiv" style="display: none">
<a
class="inline-block btnRound-thin btnRound-orange"
id="stop"
onclick="globalstoprecording()"
style="color: black"
><b>停止</b></a
>
</div>
<div id="audiodiv" style="display: none">
<audio controls="control" id="audio" style="margin: 0 auto; display: block">
</audio>
<form
action="[google app script page]"
id="dataurl-form"
method="post"
onsubmit="function(); return false;"
>
<input id="dataurl" name="dataurl" placeholder="dataurl" type="hidden" />
<div class="text-center">
<a
class="inline-block btnRound-thin btnRound-orange"
id="restart"
onclick="globalrestart()"
style="color: black"
><b>重新開始</b></a
>
<input
class="inline-block btnRound-thin btnRound-orange"
type="submit"
value="提交"
/>
</div>
</form>
</div>
<div class="text-center" id="completediv" style="display: none">
<b>你已完成提交,5秒後會轉到首頁</b>
</div>