-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (38 loc) · 1017 Bytes
/
index.html
File metadata and controls
44 lines (38 loc) · 1017 Bytes
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
<!doctype html>
<head>
<meta charset="utf-8">
<title>Speech.is</title>
<script src="http://meta.www.spx.sx/speech.js"></script>
<!--<script src="cdn/speech.is"></script>-->
<!--<script type="text/javascript" src="http://meta.www.speech.is/speech.js"></script>-->
<!--TODO: Figure out fallback from CDN to local-->
<style>
/*
* Styling is inlined for performance reasons
* TODO: Test these settings as they were just thrown together.
*/
html, body {
min-height: 100%;
overflow: hidden;
margin: 0px;
background-color: grey;
}
#speech {
border: 0px none transparent;
padding: 0px;
margin: 0px;
min-height: 100%;
}
#dns {
display: none;
}
</style>
</head>
<body>
<iframe id="speech" seamless width="100%" allowfullscreen="true" src="">
</iframe>
<iframe id="dns" width="0px" sandbox="allow-scripts allow-same-origin">
<!-- https://github.com/SpeechJS/speech.js/issues/17 -->
</iframe>
</body>
</html>