-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
70 lines (68 loc) · 2.81 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>Speech Eng</title>
<meta content="SpeechEng は 英語の発音を練習するためのサービスです" name="description">
<meta content="SpeechEng" property="og:title">
<meta content="https://kheiakiyama.github.io/speech-eng/" property="og:url">
<meta content="SpeechEng,English,Speech" name="keyword">
<link href="/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon">
<link rel="stylesheet" href="Content/bootstrap.css">
<link rel="stylesheet" href="index.css">
<script src="Scripts/jquery-3.1.1.min.js" type="text/javascript"></script>
<script src="Scripts/bootstrap.min.js" type="text/javascript"></script>
<script src="Scripts/Chart.min.js" type="text/javascript"></script>
<script src="speech.1.0.0.js" type="text/javascript"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-91764364-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif">
<section class="all container">
<section id="content">
<section class="row">
<div class="col-xs-4">
</div>
<div class="col-xs-4">
<img id="mic_off" class="" src="./mic-off.png">
<img id="mic_on" class="no-display" src="./mic-on.png">
</div>
<span id="chart_area" class="col-xs-2">
<canvas id="chart"></canvas>
</span>
</section>
<section>
<audio id="player" src="https://speechengfunction.blob.core.windows.net/speechs/828042530180587520.wav" type="audio/wave"></audio>
<div>
<span id="correct_answer"></span>
</div>
<div>
<span id="user_answer">(You say ...)</span>
</div>
</section>
<button id="listen" onclick="listen()">Listen</button>
<button id="try" onclick="start()">Try</button>
<button id="next" onclick="next()">Next</button>
<button id="done" class="no-display" onclick="done()">Done</button>
<div id="progress" class="progress">
<div id="progress_bar" class="progress-bar" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">30% Complete</span>
</div>
</div>
<div id="result">(Result)</div>
</section>
</section>
<section class="all">
<img src="loading.gif" alt="loading" id="loading" class="no-display" />
</section>
<textarea id="output" style='width:400px;height:200px'></textarea>
<script src="index.js" type="text/javascript"></script>
</body>
</html>