-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (40 loc) · 1.65 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
<html lang="es">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="index.css" />
<title>Texto a voz</title>
</head>
<body class="container mt-5 bg-dark">
<h1 class="text-light">Texto a voz</h1>
<p class="lead text-light mt-4">Select Voice</p>
<select id="voices" class="form-select bg-secondary text-light"></select>
<div class="d-flex mt-4 text-light">
<div>
<p class="lead">Volumen</p>
<input type="range" min="0" max="1" value="1" step="0.1" id="volume" />
<span id="volume-label" class="ms-2">1</span>
</div>
<div class="mx-5">
<p class="lead">Velocidad</p>
<input type="range" min="0.1" max="10" value="1" id="rate" step="0.1" />
<span id="rate-label" class="ms-2">1</span>
</div>
<div>
<p class="lead">Tono</p>
<input type="range" min="0" max="2" value="1" step="0.1" id="pitch" />
<span id="pitch-label" class="ms-2">1</span>
</div>
</div>
<textarea class="form-control bg-dark text-light mt-5" cols="30" rows="10" id="abc"
placeholder="Type here...">El vehículo con placas número P735FTQ ha llegado a la etapa finalizado</textarea>
<input type="text" id="text"/>
<div class="mb-5">
<button id="start" class="btn btn-success mt-5 me-3">Start</button>
<button id="pause" class="btn btn-warning mt-5 me-3">Pause</button>
<button id="resume" class="btn btn-info mt-5 me-3">Resume</button>
<button id="cancel" class="btn btn-danger mt-5 me-3">Cancel</button>
</div>
</body>
<!-- script tag goes here -->
<script src="./textToSpeech.js"></script>
</html>