-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (22 loc) · 811 Bytes
/
index.html
File metadata and controls
26 lines (22 loc) · 811 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="assets/css/style.css">
<title></title>
</head>
<body>
<img id="logo" src="assets/img/logo.png" alt="">
<button id="replayButton" class="hidden">Replay Translation</button>
<div class="sign-language-container">
<video id="myVideo" class="hidden" height="100%" width="100%" preload="none">
<source id="ss" src="" type='video/mp4'>
</video>
</div>
<p id="display-text"></p>
<button id="speakButton">Start recording speech</button>
<!-- scripts -->
<script src="assets/js/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/speak.js" type="text/javascript"></script>
</body>
</html>