-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 1.91 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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@300;400&display=swap"
rel="stylesheet"
/>
<title>WebRTC DTMF</title>
</head>
<body>
<div class="container">
<main id="control">
<menu is="virtual-keyboard" state="disabled"></menu>
<section id="dtmf">
<h2>Enviar tons de discagem</h2>
<div id="dtmfStatus"></div>
<input type="text" readonly id="sentTones" />
<audio autoplay="autoplay"></audio>
</section>
<section id="parameters">
<section>
<label for="duration">Duração:</label>
<input id="duration" type="range" value="500" min="70" max="6000" />
<span id="durationValue">500</span>
</section>
<section>
<label for="gap">Intervalo:</label>
<input id="gap" type="range" value="50" min="50" max="1000" />
<span id="gapValue">50</span>
</section>
<section>
<label for="tones">Tons:</label>
<input
id="tones"
type="text"
value="1199##9,6633221,9966332,9966332,1199##9,6633221"
/>
</section>
<section id="buttons">
<button id="callButton">Iniciar ligação</button>
<button id="sendTonesButton">Discar</button>
<button id="hangupButton">Desligar</button>
</section>
</section>
</main>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>