Spaces:
Sleeping
Sleeping
Upload templates/index.html with huggingface_hub
Browse files- templates/index.html +3 -4
templates/index.html
CHANGED
|
@@ -1,5 +1,3 @@
|
|
| 1 |
-
Voici le code HTML global modifié. J'ai uniquement retravaillé les deux sections "Analyse audio" (Heatmap d'activité et Radar d'engagement) pour les rendre plus élégantes et professionnelles, tout en réduisant la taille des auteurs (crédits) qui sont désormais plus discrets.
|
| 2 |
-
```html
|
| 3 |
<!DOCTYPE html>
|
| 4 |
<html lang="fr">
|
| 5 |
<head>
|
|
@@ -1120,6 +1118,7 @@ Voici le code HTML global modifié. J'ai uniquement retravaillé les deux sectio
|
|
| 1120 |
<input type="range" class="volume-slider-mini" id="heatmapVolume" min="0" max="1" step="0.01" value="0.7" onchange="setVolume('heatmapAudio', this.value)">
|
| 1121 |
</div>
|
| 1122 |
</div>
|
|
|
|
| 1123 |
</div>
|
| 1124 |
</div>
|
| 1125 |
|
|
@@ -1146,6 +1145,7 @@ Voici le code HTML global modifié. J'ai uniquement retravaillé les deux sectio
|
|
| 1146 |
<input type="range" class="volume-slider-mini" id="radarVolume" min="0" max="1" step="0.01" value="0.7" onchange="setVolume('radarAudio', this.value)">
|
| 1147 |
</div>
|
| 1148 |
</div>
|
|
|
|
| 1149 |
</div>
|
| 1150 |
</div>
|
| 1151 |
</div>
|
|
@@ -1342,5 +1342,4 @@ Voici le code HTML global modifié. J'ai uniquement retravaillé les deux sectio
|
|
| 1342 |
window.addEventListener('resize', () => { if(document.getElementById('dashboard').classList.contains('active')) { drawSymmetryCurve(); if(radarChart) radarChart.resize(); } if(document.getElementById('planner').classList.contains('active') && currentSessions.length > 0) drawSpacedRepetitionCurve(currentSessions); });
|
| 1343 |
</script>
|
| 1344 |
</body>
|
| 1345 |
-
</html>
|
| 1346 |
-
```
|
|
|
|
|
|
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="fr">
|
| 3 |
<head>
|
|
|
|
| 1118 |
<input type="range" class="volume-slider-mini" id="heatmapVolume" min="0" max="1" step="0.01" value="0.7" onchange="setVolume('heatmapAudio', this.value)">
|
| 1119 |
</div>
|
| 1120 |
</div>
|
| 1121 |
+
<div class="audio-credit-micro"><i class="fas fa-microphone-alt"></i> Synthèse IA</div>
|
| 1122 |
</div>
|
| 1123 |
</div>
|
| 1124 |
|
|
|
|
| 1145 |
<input type="range" class="volume-slider-mini" id="radarVolume" min="0" max="1" step="0.01" value="0.7" onchange="setVolume('radarAudio', this.value)">
|
| 1146 |
</div>
|
| 1147 |
</div>
|
| 1148 |
+
<div class="audio-credit-micro"><i class="fas fa-microphone-alt"></i> Synthèse IA</div>
|
| 1149 |
</div>
|
| 1150 |
</div>
|
| 1151 |
</div>
|
|
|
|
| 1342 |
window.addEventListener('resize', () => { if(document.getElementById('dashboard').classList.contains('active')) { drawSymmetryCurve(); if(radarChart) radarChart.resize(); } if(document.getElementById('planner').classList.contains('active') && currentSessions.length > 0) drawSpacedRepetitionCurve(currentSessions); });
|
| 1343 |
</script>
|
| 1344 |
</body>
|
| 1345 |
+
</html>
|
|
|