-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextToSpeech.html
61 lines (58 loc) · 2.17 KB
/
textToSpeech.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>
<!--Author: Dahou Amour *** github:http://github.com/Amour22***all Reserved copyright 2022 -->
<html lang="fr">
<head>
<!--meta-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--title-->
<title>textToSpeech</title>
<!--style links-->
<link rel="stylesheet" href="textTspeech.css">
</head>
<body>
<!--header-->
<header>
<h1>TextToSpeech</h1>
</header>
<!-- main -->
<main class="container">
<!-- screen -->
<div class="screen">
<div class="animcontainer">
<span class="anim">.</span>
<span class="anim">.</span>
<span class="anim">.</span>
<span class="anim">.</span>
<span class="anim">.</span>
<span class="anim">.</span>
</div>
</div>
<!-- form -->
<form class="formContainer">
<!-- input area -->
<textarea name="texte" id="text" placeholder="Entrer le texte ici puis cliquez sur lire..."></textarea>
<!-- buttons panel -->
<div class="controls">
<div>
<label for="voices">voix </label>
<select name="voices" id="voices"> </select>
<label for="volume">volume </label>
<input type="range" name="volume" id="volume" min="0.5" max="2" value="1" step="0.1">
</div>
<div>
<label for="pitch">velosité </label>
<input type="range" name="pitch" id="pitch" min="0" max="2" value="1" step="0.1">
<label for="speed">vitesse </label>
<input type="range" name="speed" id="speed" min="0.5" max="2" value="1" step="0.1">
</div>
</div>
<!-- listen button -->
<input type="submit" id="listen" value="🎧">
</form>
</main>
<!-- script import -->
<script src="textTspeech.js"></script>
</body>
</html>