-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (59 loc) · 2.66 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>
<head>
<title>Hanotany aho</title>
<link rel="stylesheet" type="text/css" href="static/styles.css">
<meta charset="UTF-8">
<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=Josefin+Sans:wght@200;300;400;500&family=Raleway:wght@100;200;300;400;500&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.2.3/particles.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="container">
<!--<h1 class="title">Hanotany aho</h1>-->
<h1 class="span load"><span class="m">A</span><span class="m">N</span><span class="m">O</span><span class="m">T</span><span class="m">A</span><span class="m">N</span><span class="m">I</span><span class="m">O</span> <span class="m">A</span><span class="m">H</span><span class="m">O</span></span></h1>
<h3>Andrianina & Fy Tiana</h3>
<div class="input-container">
<input type="text" id="question" placeholder="Anontanio izay tianao ho fantatra ...">
<button id="ask-button">Manontany</button>
<button id="refresh-button"><i class="fas fa-sync-alt"></i></button>
</div>
<div id="response-container" class="response-container">
<div id="response-text" class="hidden">Miandry valiny...</div>
<div class="loader hidden"></div>
<div class="audio-controls hidden">
<audio id="audio-player" src="static/out.mp3" controls></audio>
<a id="download-button" class="hidden" href="static/out.mp3" download>Alaina</a>
</div>
</div>
</div>
<canvas class="background"></canvas>
<script src="static/script.js"></script>
<script>
window.onload = function () {
Particles.init({
selector: ".background"
});
};
const particles = Particles.init({
selector: ".background",
color: ["#03dac6", "#ff0266", "#000000"],
connectParticles: true,
responsive: [
{
breakpoint: 768,
options: {
color: ["#faebd7", "#03dac6", "#ff0266"],
maxParticles: 43,
connectParticles: false
}
}
]
});
</script>
</body>
</html>